Question

I am using qTip2 to show a help message near the mouse cursor.

 position: {
   target: 'mouse'
 }

But I cannot click on anything because qTip is always under the mouse, it prevents from clicking anything under it. How can I move the tip some pixels aside from mouse (so it still follows it)?

http://jsfiddle.net/7LDmA/3/

Était-ce utile?

La solution

Add this code do your CSS

It will position the element 10 pixels lower:

#qtip-0 {
    margin-top: 10px;
}

Example: http://jsfiddle.net/hKHAk/

Autres conseils

You may let the pointer click through the tooltip:

#qtip-0 {
    pointer-events: none;
}
Licencié sous: CC-BY-SA avec attribution
Non affilié à StackOverflow
scroll top