views:

43

answers:

3

Hi,

In <insert non-IE browser here> there is the <canvas> element that allows for doing some fairly advanced drawing. In IE it's possible to draw with <div> elements, but that can get pretty slow if you're doing anything more than a few basic tasks.

Is there anything available in IE 5+, in pure HTML/CSS/Javascript, that can allows for basic drawing? At least the ability to draw pixels. Lines would be nice, but I'm not too greedy.

My Google searches have failed to turn up anything useful, and I strongly suspect I won't find anything, but I figured if anyone would know/it's the folks on stack overflow!

Thanks

+3  A: 

You can use VML as an alternative. Google Maps uses it to support IE.

http://en.wikipedia.org/wiki/Vector_Markup_Language

Philippe Leybaert
A: 

Explorer Canvas makes <canvas> available for IE6, 7 and 8.

Harmen
A: 

You can use the explorercanvas library.

SLaks