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
0
votes
2 answers

Tipsy on multiple classes

I'm trying to use TIpsy http://plugins.jquery.com/project/tipsy to show usernames when hovering over linked images. Here's my HTML for the linked images:
Luke
  • 22,826
  • 31
  • 110
  • 193
0
votes
1 answer

Tipsy Jquery plugin won't load inside another Javascript?

I'm working with a the JQuery tipsy plugin and I can get it to work fine on my normal php page but when I run data from XML thru another javascript it's not loading or working properly... I've tried every imaginable change/variable and I'm…
user961389
  • 423
  • 2
  • 8
  • 19
0
votes
1 answer

Tipsy bug tooltip freezes onclick

My tipsy tooltip freezes onclick. My Jquery: My HTML:
Rails beginner
  • 14,321
  • 35
  • 137
  • 257
0
votes
1 answer

Is it possible to trigger jquery tispy tooltip based on results of an ajax call?

Im doing an ajax call, that does the following on success: success: function(data) { var allok= data.success; if(allok == true) { $("#share_text").addClass('share_success').delay(2000).queue(function(next){ …
user15063
0
votes
0 answers

Legend and axes not working properly in d3 multi-line chart

I adapted a multi-line chart which has a legend and axis and displays correctly on the bl.ocks.org site (http://bl.ocks.org/Matthew-Weber/5645518). The legend reorganizes itself when you select a different type from the drop down field. On my…
PatriciaW
  • 893
  • 1
  • 12
  • 30
0
votes
1 answer

Native browser tooltips showing over jQuery Tipsy tooltips in IE

I'm hoping someone can help. I've implemented the jQuery Tipsy plugin and it works fine in all browsers apart from IE. Currently, on first load of the page in IE, both the tipsy tooltips AND the native browser tooltips are displaying. If you then…
V Neal
  • 419
  • 1
  • 10
  • 28
0
votes
1 answer

How to show tipsy programmatically after an ajax call

I want to display tooltip text dynamically from a server using an ajax call. Currently, the tooltip text is not updated on the first click, because the ajax call takes some time to receive the data. $('.class').tipsy({ gravity:…
Abhijeet
  • 1,515
  • 1
  • 11
  • 21
0
votes
2 answers

Highlight elliptical arc drawn using D3.js on Mouseover and display tooltip

How do I highlight an elliptical arc drawn, on mouseover and display tooltip on the same using d3.js?
sjaikumar
  • 49
  • 5
0
votes
0 answers

Why does Tipsy return Undefined with Ajax?

I am using jQuery 2.1.4. I am using the latest iteration of tipsy. I know that jQuery's .live was deprecated and to use .on. I made the changes to tipsy as found here: tipsy live does not work with jQuery 1.9.0 with, if (options.trigger != 'manual')…
johnny
  • 19,272
  • 52
  • 157
  • 259
0
votes
0 answers

Jquery Tipsy not working with Jquery 2.1.4?

I've used tipsy many times before over the last 2 years with no issue, but when I try run it on a new site I'm building, it's just not working! Can anyone spot what I'm doing wrong? It's at my website, and I've cut it down to the bare basics but…
dpDesignz
  • 1,909
  • 10
  • 34
  • 70
0
votes
1 answer

Set width of jQuery Tipsy bubble

I'm using this plugin: http://onehackoranother.com/projects/jquery/tipsy/#options Is there a way (preferably via CSS or else via jQuery) to set the width of the the popup bubble? I'm applying tipsy on a link like so: $('#linktip').tipsy({ html:…
Adam
  • 6,041
  • 36
  • 120
  • 208
0
votes
2 answers

how to use tipsy in php?

I am using Tipsy in my webpage to show tooltip. But it is showing Title with Tipsy css etc.. perfectly for first result but not working on another results from mysql. On Another Simple Title is shown on hover. (Please See below attached Image ) I am…
0
votes
1 answer

How can I show a Tipsy tooltip automatically on load and close it after 10 seconds?

Is there any way how to show a Tipsy tooltip automatically on load and close it after 10 seconds? $('.west').tipsy({ gravity: 'w', html: true, live: true…
user1406271
  • 297
  • 1
  • 3
  • 12
0
votes
1 answer

jQuery Validation and Tipsy not working with select in IE

I use jQuery Validation plugin for validate my form and use Tipsy tooltip for error messages. I have a problem to work for drop-down in IE 10/11. After validation, if the field reports a required message the drop-down opens and closes automatically…
0
votes
1 answer

Additional tooltip text using tipsy and d3.js

Not really sure how to work with these tooltips, as I'm working off some example code. I have a scatterplot created by d3.js that uses tipsy to add tooltips to each circle. This is the part of the code that adds the label when you rollover any…
jonmrich
  • 4,233
  • 5
  • 42
  • 94