Thread Rating:
  • 0 Vote(s) - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Text on mouseover of hyperlinks not working
#2
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:
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>
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).
Reply


Messages In This Thread
RE: Text on mouseover of hyperlinks not working - by Ofnuts - 04-06-2017, 07:43 AM

Forum Jump: