04-06-2017, 07:43 AM
The text you add is for the "alt" attribute while the text for a mouse-over should go in the "title" attribute. Not very hard to change one for the other with a text editor:
However, note that "foobar" above, entered in the "onmouseover" field in the "Javascript" tab is just causing eerror in the Javascript console since it should really be a valid bit of JavaScript (possibly a call to some JavaScript function).
Code:
<img src="TestMap.png" width="400" height="400" border="0" usemap="#map" />
<map name="map">
<area shape="rect" coords="0,0,200,200" title="upper-left popup" href="upper-left.htm" onmouseover=foobar />
</map>