I know that the basic event for mouseover in jqvmap is :
onRegionOver: function(event, code, region){
}
The aim is to have different cursors when mouseover different coutries.
I tried this :
onRegionOver: function(event, code, region){
$(this).css('cursor', 'pointer');
}
But, this is in fact the whole world map.
Thank you in advance for your help.