devmonster
devmonster

Reputation: 1739

html5 canvas doesn't work in IE8

I have built this progress bar in html5. The bar is clickable and you get an explanaion when you click on each of the sections. It works but not in IE8. Can anyone tell me what is worng? I have been working on it for a month but nothing!! a little help pls. :-)

Upvotes: 2

Views: 12544

Answers (1)

lukad
lukad

Reputation: 17873

IE8 doesn't support canvas natively. You can use explorercanvas to add canvas functionality to IE8.

All you have to do is include the excanvas.js file in your page.

Example from the explorercanvas wiki:

<head>
<!--[if IE]><script src="excanvas.js"></script><![endif]-->
</head>

Upvotes: 10

Related Questions