JQuery qTip: make a callout there

How to draw qTip call output when the page is loaded, and ALSO stay there even if I hang over the field. Essentially, I just want a fixed callout, and I use qTip for easy positioning and styling.

Note. I tried setting "show: {ready: true}", but it just issues a call initially. If someone hangs over the target field associated with him, the call is canceled. I need this to show the displayed period.

thanks

PS I am using the latest version 1. * (stable version).

Adding

hide: { when: 'mouseout', fixed: true }, 

doesn't seem to have helped for any reason nor did

  hide: {fixed: true } 

Perhaps I am using these parameters incorrectly?

+4
source share
1 answer

Try:

 $("#tip").qtip({ hide: false, // Don't specify a hide event show: { ready: true } // Show the qtip when ready. }); 
+5
source

All Articles