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

jquery tipsy tooltip not working with d3.js circles

Here is my d3.js code var circles = vis.selectAll("circle").data(data) circles .enter() .append("svg:circle") .attr("stroke", "black") .attr("cx", function (d) { return xRange(d.year); }) .attr("cy",…
iJade
  • 23,144
  • 56
  • 154
  • 243
1
vote
0 answers

Tipsy is changing my images back to text

I'm using Tipsy with WordPress. I have the images all set up, but when I try to use the plugin it changes the image back to text. Why?
1
vote
2 answers

CSS Customization of Tooltip on Radio Button

So I have this html code: So here's my attempted…
Charlie Yabben
  • 307
  • 2
  • 7
  • 13
1
vote
3 answers

Button in a Tipsy Tooltip not firing an onClick event

I've set up this (updated) JSFiddle demonstrating what I am trying to do, but basically I think this is a situation of event bubbling. I am trying to position (in a tool tip) a button that when clicked on will change the value of the input that the…
Jason Sperske
  • 29,816
  • 8
  • 73
  • 124
1
vote
4 answers

Align jQuery Tipsy To Left Edge Of Element

I'm using the jQuery Tipsy Plugin to create tool tips in my project. Tooltips are automatically centred to the element, as seen on the plugin pages demos, but I'd like it to align to the left of element, does anyone know a method to do this? The…
Ryan Brodie
  • 6,554
  • 8
  • 40
  • 57
1
vote
2 answers

Tipsy won't recognize d3 elements in asp.net

I am writing something ASP.NET and using d3 to graph a scatter plot, then tipsy to do mouseovers. This is inspired by this example. I have dumbed down my graph considerably so it is just this: http://jsfiddle.net/scottieb/D9Vjg/ But when I put that…
ScottieB
  • 3,958
  • 6
  • 42
  • 60
1
vote
2 answers

jquery combining links id's

This is my current code in order for each of my $('#fbNameS1').tipsy({fade: true}); $('#fbNameS2').tipsy({fade: true}); ... $('#fbNameS207').tipsy({fade: true}); $('#fbNameS208').tipsy({fade: true}); Now i've seen some jQuery code where they…
StealthRT
  • 10,108
  • 40
  • 183
  • 342
1
vote
1 answer

jquery tipsy triggering manual to toggle

tipsy is great jQuery tooltip plugin like facebook. This worked with many option but I print link of mypage in tooltip (rel method) now I need to if user click in my link show tooltip and user copy link of my current page ( I put in tooltip)…
BBKing
  • 2,279
  • 8
  • 38
  • 44
1
vote
1 answer

html in tipsy tooltip jquery plugin

tipsy is plugin to facebook style tooltips using jquery. I want to be able to display HTML inside the tooltip. e.x : i have any image with class='test' when mouse over in image, i see tooltip with text(html) in
. E.X :
BBKing
  • 2,279
  • 8
  • 38
  • 44
0
votes
1 answer

Tipsy Plugin not working in IE9

I've used Tipsy on my webpage, it is working fine on all browsers except IE9 (well i do not check it on earlier IE versions). The tooltips are displayed on hover without any effect. What I am doing wrong here? or is it a bug instead? Any solutions?…
Asif
  • 4,980
  • 8
  • 38
  • 53
0
votes
2 answers

Tipsy Tooltip arrow trouble

i am making a toolbar with the tipsy tool tip. I changed the CSS to change the color, then i made am image for the arrow. here is a link to the image: http://www.novaprogramming.com/tipsy.png the color is: #454545 For some reason it will not show…
user1256042
0
votes
2 answers

Place tipsy in place where every div occure

Javascript: TPL Smarty:
Cameleon
  • 453
  • 1
  • 6
  • 16
0
votes
1 answer

tipsy tooltip with ajax

I m using tipsy tool tip with asp.net mvc. i want to get the details about image from database on mouseover and show the result in formatted html in tooltip. anyone have example how to do this thing with ajax call?
Saad
  • 1,312
  • 5
  • 17
  • 40
0
votes
1 answer

Double escaping HTML

I use a tooltip library where I escape HTML and place it in the title attribute. When you mouse over that element, it unescapes the HTML and places it in the tooltip. The issues I'm having is recursion. I have a button in a tooltip, that also has a…
Binary Logic
  • 2,562
  • 7
  • 31
  • 39
0
votes
5 answers

Variable is not defined

I am trying this code to update the fallback of tipsy plugin. How can I access the variable a outside of first function ? I can override the variable to make the update, correct ?