I've got a couple of functions going on, on some images that (using some code from this site) saturates (pixastic.revert) or desaturates an image when the mouse enters or leaves the image.
$('.execImagenav').live({
mouseenter: function () {
Pixastic.revert(this);
}, mouseleave: function () {
jQuery(this).pixastic("desaturate");
}, click: function () {
$('.execImagenav').unbind('mouseleave');
Pixastic.revert(this);
}
});
I added the click bit at the bottom as when someone clicks an image, I don't want it to desaturate when the mouseleaves as this will be the 'active' image.
However this does not work, could you advise?
Thanks.
