I would like to have pop ups with information on my image map coords. I have the image map set up and working fine but I can't seem to incorporate a pop up whether it be jQuery or just with CSS.
An example image map coord line is:
<area shape="rect" coords="2,44,250,108" href="http://blah.com" alt="test alt" title="test title" />
I tried putting that code into
<span class="dropt" title="title">Above area shape line here
<span style="width:500px;">Pop-up text</span>
</span>
with the css but didn't work.
I also tried the jQuery and got the pop up to work on text and single image, but is it possible to do it using image map coords?
Thanks,