Can Not Call Selector Of Map Svg (wordpress Map Plugin) When Clicked
I am working on a Wordpress website with a MapSVG plugin. Here it is:http://www.wordpressdemo7.mozaikdesign.fr/ My client want to open specific tab bellow when click on an area of
Solution 1:
Greetings from plugin's author. You have to put it into onClick event handler in javaScript tab inside of MapSVG control panel:
function(){
var regionID = this.id;
if (regionID == "Kalimantan"){
jQuery("#tabbed-nav").data('zozoTabs').select(4);
}
}
Post a Comment for "Can Not Call Selector Of Map Svg (wordpress Map Plugin) When Clicked"