Questions tagged [tipsy]

jQuery plugin for creating Facebook-like tooltips

Tipsy is a jQuery plugin for creating a Facebook-like tooltips effect based on an anchor tag's title attribute.

103 questions
1
vote
1 answer

Getting the current count of Protovis Sparkbar

I am currently trying to display the number and date(string format) of a json file into tipsy tooltip. data…
Dane
  • 173
  • 2
  • 4
  • 15
1
vote
1 answer

Protovis jQuery tipsy doesn't work with click event

I have tipsy working fine on my chart. The mouseover event worked fine but when I added a click event, it doesn't execute the click event as I wanted. Below is my code: var vis = new pv.Panel() .width(w) .height(h); …
Dane
  • 173
  • 2
  • 4
  • 15
1
vote
2 answers

What could cause conflict with Tipsy's focus trigger?

I'm using the Tipsy jquery plugin and the focus triggers acts the same way as the hover trigger. Tipsy stops displaying once my mouse is off an input field even though the field is still focused. What could cause this issue? Based on this jQuery…
Matthew Hui
  • 3,321
  • 2
  • 27
  • 38
1
vote
1 answer

jQuery: multiple 'tipsy' tool tips

When I bring back a list of results from my database, they are displayed like so: Result 1 Result 2 Result 3 And so on... Now I've got the jQuery Tipsy plugin working so when you hover over the top of Result 1 it shows that persons users name.…
no.
  • 2,356
  • 3
  • 27
  • 42
1
vote
0 answers

Use tipsy with Angular 2 and D3.js jQuery tipsy

The following works with D3.js http://bl.ocks.org/ilyabo/1373263 $('svg circle').tipsy({ gravity: 'w', html: true, title: function() { var d = this.__data__, c = colors(d.i); return 'Hi there! My color is…
1
vote
1 answer

Trying to get a tooltipsy example to work

I downloaded tooltipsy.min.js from http://tooltipsy.com/ and put it on the same folder as my html file. This is my code which doesn't work at all. Why? Wrapping the jquery code with $(document).ready()didn't help.