I have an image, a simple text menu and the jQuery imagemapster plugin.
When hovering an area of the image, I'd like the corresponding menu item to highlight (as in hover) and when hovering a menu item, I'd like the corresponding image map area to highlight.
I've set up a simple jsfiddle to illustrate the problem: http://jsfiddle.net/tqpFU/23/
Below the basic jQuery start:
jQuery(document).ready(function ($) {
$('#house').mapster({
mapKey: 'name',
singleSelect: true,
fillOpacity: 0.6,
fillColor: 'FF0000',
});
});