Jquery Qtip Autohide as well as Hide by Click

353 views Asked by At

How can I tell a JQuery qtip tooltip to hide after it is clicked on "or" when it is inactive for some seconds? Thanks

1

There are 1 answers

0
dm4web On BEST ANSWER

http://jsfiddle.net/xffo4mfc/1/

$('#wrap a').qtip({

    show: 'mouseover',
    hide: 'mouseout'

}).click(function () {// hide qtip on click event

    $(this).qtip('hide');

})