I am trying to create an image map and it works okay. I am able to hover over an image area and it links to another page.
Instead of href link, is it possible to display popup text instead? So, in my example below, clicking on the left eye or Mouth should produce popup text.
Here is an example of how my popup text should look. https://frankmanno.com/ideas/css-imagemap/index_js.html
Here is my code -
<div id="container">
<div id="image_container">
<img src="http://tinypic.com/images/goodbye.jpg" usemap="#image_map">
<map name="image_map">
<area alt="Left Eye" title="Left Eye" href="https://www.yahoo.com/" coords="118,36,148,80" shape="rect">
<area alt="Mouth" title="Mouth" href="https://www.yahoo.com/" coords="121,84,198,118" shape="rect">
</map>
</div>