0

I know this question has been posted many times, but I didn't find any solution in all the posts I read. I'm using Kinetic JS to display images. It works fine on Chrome and FF but images don't show up on IE. I tried to add this line to my index file :

<meta http-equiv="X-UA-Compatible" content="chrome=1, IE=edge">

as it is suggested here KineticJS wont load in Internet Explorer But it is still doesn't work.

Any suggestions?

Thanks!

Community
  • 1
  • 1
user1499220
  • 419
  • 4
  • 12
  • 23

1 Answers1

0

KineticJS does not and will not have < IE9 support. As stated by Eric Rowell the developer of KineticJS.

The reason for this is because KineticJS uses <canvas> but IE8 and below does not support the <canvas> tag, so nothing will render.

You will be better off using RaphaelJS as it supports VML for IE and SVG for the other browsers.

projeqht
  • 3,160
  • 3
  • 18
  • 32