Ole
Ole

Reputation: 1382

JQuery tooltip that is not tied to an object

is there any jquery plugin that enables you to programmatically call a tooltip that will show up under the mouse?

Why I am looking for this is because I have a pie graph made with jquery flot. You can have it call a function when hovering a field in the pie, so this essentially has to be called from a function, and NOT tied to an object on the page.

Thanks in advance, I couldn't really find anything on google searching

Upvotes: 1

Views: 51

Answers (1)

Alex Peattie
Alex Peattie

Reputation: 27697

Have you looked at the cursormessage plugin?

http://plugins.jquery.com/project/CursorMessage

Alternatively you could try combining clueTip's sticky and mouse follow options:

http://plugins.learningjquery.com/cluetip/demo/

Upvotes: 1

Related Questions