How to hide qTip automatically/manually
Hello Friends,
qTip is efficient jQuery tooltip plugin in web application, reason for that is its easiness of use and other great features. Yesterday i was working with qTip and i need to hide qTip manually. I searched for this and i came across below code which hides all qTips.
for (i = 0; i < $.fn.qtip.interfaces.length; i++) {
var api = $.fn.qtip.interfaces[i];
if(api && api.status && api.status.rendered )
{
//hide all tip
api.hide();
}
}
Let me know if you find any problem.






I am
about 1 year ago
$.each($.fn.qtip.interfaces, function(i, curValue) {
if (curValue && curValue.status && curValue.status.rendered) {
//hide all tip
curValue.hide();
}
});