I've got an imagemap which uses jq_maphilight that I want to have popups when the map areas are clicked. I've tried adding class="popup" but that doesn't seem to be working. Is this supported? How can I get this to work?

<IMG class="jq_maphilight" SRC="sites/default/files/map.jpg" USEMAP="#map" BORDER="0">
<MAP NAME="map">
	<AREA SHAPE="RECT" COORDS="432,197,451,228" HREF="/content/test1" class="popup" TITLE="Test 1">
	<AREA SHAPE="RECT" COORDS="421,197,430,229" HREF="/content/test2" class="popup" TITLE="Test 2">
	<AREA SHAPE="RECT" COORDS="452,198,464,229" HREF="/content/test3" class="popup" TITLE="Test 3">
	<AREA SHAPE="RECT" COORDS="465,198,472,230" HREF="/content/test4" class="popup" TITLE="Test 4">
</MAP>

Comments

randallknutson’s picture

Ok so I'm an idiot. I needed to do three things:
1. ENABLED THE POPUPS MODULE. Shocker I know.
2. Check the box "Scan all pages for popup links." on the popup settings page.
3. Should be class="popups" not class="popup"

Working now.