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.

104 questions
21
votes
2 answers

tipsy live does not work with jQuery 1.9.0

We recently upgraded our jQuery to 1.9.0, but it broke our tipsy plugin. Its live functionality now causes an error. $('.tooltip, abbr').tipsy({ live: true }); TypeError: this[binder] is not a function Are there any fixes or patches for this?…
Dysprosium
  • 335
  • 2
  • 7
7
votes
2 answers

D3.js tipsy tooltips

Is D3.js able to supprt tipsy tooltip? Can someone show me an example if possible. thanks.
Dane
  • 173
  • 1
  • 4
  • 15
6
votes
5 answers

Tipsy jquery plugin for dynamic live events is not working

I'm using the tipsy jquery plugin to create tooltips for dynamically appearing elements. The tooltips work on non-dynamic elements, so I've definitely included everything that I need. I'm using jquery 1.5.1 This is my jquery code:…
Justin Meltzer
  • 12,518
  • 30
  • 110
  • 177
6
votes
2 answers

Tipsy tooltip positioning on d3 in firefox, IE

I'm drawing d3 line graphs and tipsy tooltips attached to the circles. The tooltips work fine in Chrome/Safari but in Firefox and IE when you hover over a point, while the respective tooltip does appear, it shows up outside the graph/SVG element in…
eva
  • 61
  • 3
4
votes
1 answer

Make jQuery Tipsy tooltip move with mouse

I'm sure this is possible -- and probably very easy -- but I can't figure out how to make it work. How can I make a Tipsy tooltip move horizontally along with the mouse? When hovering over a Tipsy-enabled element, I want the tooltip to appear at its…
40 Degree Day
  • 2,073
  • 4
  • 19
  • 15
4
votes
2 answers

Fixing position of Tipsy tooltips on Raphaël path nodes

This is a very specific and somewhat complex issue, so I have set up a minimal test case that you should probably see before reading the rest of this. I have page that displays images with highlighted areas on hover via Raphaël. I have also been…
mikl
  • 21,944
  • 17
  • 64
  • 88
4
votes
4 answers

Can I make this jQuery tooltip stay on when my cursor is over it?

http://onehackoranother.com/projects/jquery/tipsy/ Let's say I hover over something. And the tooltip appears above the link. When I move my mouse to the tooltip, it disappears. Is there a way to keep it up? The reason I'm asking this is because I…
TIMEX
  • 217,272
  • 324
  • 727
  • 1,038
3
votes
0 answers

How do I enable tipsy tooltips when hovering over flash objects?

I'm looking to implement a 'copy to clipboard' button exactly like github does. I'm using clippy to render the button and tipsy to get the tooltip. Right now, there's a span of 14x14 wrapping the 14x14 flash object. However, when I apply the tipsy…
ShravanP
  • 273
  • 1
  • 2
  • 6
3
votes
1 answer

how to do bootstrap tipsy tooltip multiline

as in title, how can I split in two lines the tooltip? I would use some html tag (like span or p) too. I already tried html entities, it doesn't work. Some<br> text
alfredopacino
  • 2,117
  • 3
  • 25
  • 48
3
votes
2 answers

jQuery confliction after clone

I want to clone question mark with title. Everything works but when I hover over new question marks tooltip appears on first question mark. Any idea? I am using jQuery and tipsy tooltip. Demo here
click here
Fury
  • 4,173
  • 4
  • 40
  • 71
3
votes
2 answers

Callbacks on jQuery Tipsy hide / show

I'm trying to set a callback function after tipsy opens / closes. function addText() { $('#text').html('Tipsy is now open !'); } $('.tipsy').tipsy(addText); I want addText() to run after tipsy opens, but it doesn't. Is there an easy way to…
Hugo H
  • 4,494
  • 3
  • 29
  • 53
3
votes
2 answers

jQuery tipsy: Dynamically update title

As per requirement, I want to update an existing tipsy title, but it doesn't seem to work. Situation HTML:
3
votes
1 answer

Tipsy tooltip attached on circle's upper left corner using d3

When I use tipsy on my d3 force directed graph I have a problem: when I set the tipsy gravity to west, the tipsy begins at the upper left corner of my circle. How can I make it begin on the right side of my circle? Here is the sample of the code I…
Christopher Chiche
  • 14,409
  • 9
  • 55
  • 94
3
votes
2 answers

How do I show Tipsy tooltip on load and keep it shown?

I've just installed Tipsy Tooltip (http://onehackoranother.com/projects/jquery/tipsy/) script on my wordpress site, I'm just wondering how I go about showing the tooltip on page load and keeping it shown. This is the code I have so far;
Ben Goodman
  • 45
  • 2
  • 8
2
votes
1 answer

jQuery Tipsy: Simple Overwriting Solution?

How can I change the direction from "n" to "w" without losing the test text and without cloning it? $(".tipsy").live('mouseover',function() { $(this).tipsy({gravity: "n", html: true}); …
Maverick
  • 1,073
  • 5
  • 16
  • 30
1
2 3 4 5 6 7