I have a page help tooltip running on the page that displays on hover. Running under a separate function I am using the same tooltip tool to run a tutorial which goes through steps(a series of 12 tooltips each activated by the previous/next button) If you are in the middle of the tutorial and hover over one of the items that is not included in the tutorial it kills the tutorial and then you have to start over. When the jquery is ran for the tutorial I want to disable the page help tooltip and re-enable it when the tutorial has been exited.
I tried adding a few different things that did not work...
window.addBlockMouseEvent = function () { return false; };
and also...
function stopAddBlockMouseEvent() {
return false;
};
neither had the desired result. Still really new at this, any help is appreciated, This question was closed before, I am not sure how to explain what it is I need more clearly.
solution found: Or if for some reason we want to hide only a sub-set of the tooltips, we can define a parent common to them
$('.selector').qtip({
content: {
text: 'I hide other tooltips when I'm shown... booya!'
},
show: {
solo: $('.qtips') // Hide tooltips within the .qtips element when shown
}
});
stopAddBlockMouseEventandwindow.addBlockMouseEventsupposed to be? the named function that you passed as a callback to the mystery tooltip plugin? – Kevin B Jan 21 at 16:42