I have something like the following in my js code...
a.off('mouseover').on('mouseover', function() {
overlayTrigger(this);
});
a.off('click').on('click', function() {
overlayTrigger(this, true);
});
And then later on during the mouse click, i remove them:
$(obj).off('mouseover');
$(obj).off('mouseout');
But I want the next mouse click, if those handles are off, I want to re-enable them... However, I don't know how to check whether 'mouseover' is off or not...
Digging through google is a little bit difficule, because the keywords "on" and "off" and "mouseover" aren't the method to find what i want... >.<
Any help/hint would be appreciated. :)