nswilhelm / jquery-map-trifecta

Combines RWD Image Maps, Maphilight, and Zoom into 1 solution. Optional table integration.
MIT License
20 stars 14 forks source link

href not working #4

Closed damngraphic closed 6 years ago

damngraphic commented 7 years ago

Hi, I've been using this plugin for a while and it's been great for what I needed, but now I need to make an area link to a website but it doesn't seem to work. Is there a way to make the url work properly?

<area href="http://www.google.com/" alt="google" data-mapid="9" shape="poly" coords="393,594,471,520,482,512,472,488,457,480,441,476,424,475,407,475,392,478,383,482,368,482,356,482,348,486,339,490,332,495,327,510,329,526,341,546,352,564,366,582,384,594" class="{fillColor:'04606A',strokeColor: '0392B7'}">

nswilhelm commented 7 years ago

You could try adding an onclick to the area tag.

<area onclick="window.open('http://www.google.com', '_self');" href="#" alt="google" data-mapid="9" shape="poly" coords="393,594,471,520,482,512,472,488,457,480,441,476,424,475,407,475,392,478,383,482,368,482,356,482,348,486,339,490,332,495,327,510,329,526,341,546,352,564,366,582,384,594" class="{fillColor:'04606A',strokeColor: '0392B7'}">