I have a web application ( does graphics and statistics ), and am having some trouble getting part of it to work.
The graphs are loaded via an ajax requests that sets the innerHTML of a div to something like below:
<div width="600" height="300" id="graph-1-1-9">
<map name="9">
<area onmouseout="hideddrivetip()" onmouseover="ddrivetip('<p align=left>Time: 2007-08-01 02:25:00 PM<br>Value: 1064</p>', 'yellow', 300)" href="/module/cdn/stats/graphimage/9/600x300/gif/current/graph.gif" coords="47, 229, 2" shape="circ"/>
</map>
<img usemap="9" src="/module/cdn/stats/graphimage/9/600x300/gif/current/graph.gif"/>
</div>
So, my issue is that in Mozilla, the imagemap works great, but in IE it is just a regular boring image. The ddrivetip and hideddrivetip functions are loaded at the top of the <body>, and are just functions to display tooltips overtop of certain parts of the graph image.
Am I doing somethign dumb, or is IE?