I'm mapping an image so that when I click on a particular area, another page is referenced in an iframe. However, in order for the user to know where he / she is clicking, I want to increase the opacity of that area and place a text.
<img src="..." usemap="#mapa"/>
<map name="mapa">
<span id="tutorias">
<area shape="rect" coords="" href="teste1.html" target="janela">
<p>Tutorias</p>
</span>
<area shape="rect" coords="" href="teste2.html" target="janela">
</map>
Well, my idea was to show text over past coordinates. So that it only covered that particular area.
Summarizing what I plan, is to show the name of the area that the user places the mouse and demarcates it.