jquery - qTip2 with multiple show events does not work -


qtip2 works on click when specify more 1 event. mouseenter or focus alone works fine want make sure works on events in case on mobile devices there no mouseenter event.

$('span#message').qtip({     content: {         text: 'some text'     },     show: {         event: 'click mouseenter focus'     },     hide: {         event: 'click mouseleave blur'     } }); 


Comments

Popular posts from this blog

powershell Start-Process exit code -1073741502 when used with Credential from a windows service environment -

twig - Using Twigbridge in a Laravel 5.1 Package -

c# - LINQ join Entities from HashSet's, Join vs Dictionary vs HashSet performance -