I'm using Maphilight by David Lynch and as far as getting it to highlight on mouseover, that works great. What I'm having problems with and that there doesn't seem to be any examples on is when clicking an area, having the area A. highlight and stay lit and B. Deactivate when clicking another area.
Essentially, I'm using the script from the demo page and trying to modify it accordingly, however, everything I've tried hasn't worked. It seems pretty simple and straightforward, so I'm surprised there's little to no documentation on this functionality.
Anyone got any ideas? Basically, the image I'm using as my map is a circle, divided into quadrants. Each quadrant should light when moused over and stay lit when clicked until a new quadrant on the map has been selected. Here's what I'm using for my script:
$('.map').maphilight({fillColor: 'ff0000'});
$('#q1, #q2, #q3, #q4').click(function(e) {
e.preventDefault();
var data = $(this).mouseout().data('maphilight') || {};
data.alwaysOn = !data.alwaysOn;
$(this).data('maphilight', data).trigger('alwaysOn.maphilight');
});
Any help or suggestions you may have would be great.
UPDATE: An online link to the page I'm working on is http://test.dpigraphics.net/process.php
There is a solution in jquery&maphighlight ONLY!:
And the trick is in handling good one of the maphighlight's input attributes: alwaysOn:
EDIT: make sure you have the latest maphilight ! : http://davidlynch.org/projects/maphilight/jquery.maphilight.min.js , from maphilight's official webpage.