2

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. :-)

winner_joiner
  • 12,173
  • 4
  • 36
  • 61
devmonster
  • 1,729
  • 8
  • 24
  • 48
  • 5
    duplicate : http://stackoverflow.com/questions/1332501/how-can-i-use-the-html5-canvas-element-in-ie – kostja May 21 '12 at 11:56
  • I don't get it, why isn't it working here [link]http://s-maof.com/simulator/index1.php?fkapp=1#undefined . I have looked in the other question and still nothing.. – devmonster May 22 '12 at 12:33

1 Answers1

10

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>
lukad
  • 17,287
  • 3
  • 36
  • 53