tags:

views:

34

answers:

2

I would like to implement a simple drawing tool that could run across most of the browsers, but it's not working on IE. Any one have an idea on how can I achieve maximum browser compatibility?

A: 

Check out Raphael. VML on IE and SVG on other browsers. They claim:

Raphaël currently supports Firefox 3.0+, Safari 3.0+, Chrome 5.0+, Opera 9.5+ and Internet Explorer 6.0+.

slebetman
+1  A: 

You can use explorer canvas to support canvas element in Internet Explorer (including IE6)

To use it, just add this to your document:

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

Further instructions (for specific versions) are here

naikus