Hi,
I'm working on a site which uses the EZPZ tooltip jquery plugin, and I have the style of the page changing dramatically when a button is clicked, making the tooltip pointless.
But, I can't for the life of me figure out how to unbind the event from the <li>
.
Here's the code that is used to actually set up the tooltip on the li's:
var ttObj = $('.listView span');
var ttArr = jQuery.makeArray(ttObj);
$.each(ttArr, function (key, value) {
var positionTip = "rightStatic";
if (IS_IE7) {
positionTip = "rightStaticIE";
}
$(value).ezpz_tooltip({
contentPosition: positionTip,
stayOnContent: true,
offset: -495
});
});
Any help would be greatly appreciated. Thanks.