qTip2 works only on click when I specify more than one event. Mouseenter or focus alone works fine but I want to make sure it works on all events in case on mobile devices there is no mouseenter event.
$('span#message').qtip({
content: {
text: 'some text'
},
show: {
event: 'click mouseenter focus'
},
hide: {
event: 'click mouseleave blur'
}
});
I came across the same problem and I was able to fix it by replacing following code in
jquery.qtip.js
:To: