Questions tagged [jquery-tooltip]

Tooltip implementation using the jQuery library.

Tooltip implementation using the jQuery library without any external plugins or widgets.

218 questions
0
votes
1 answer

jQuery UI Tooltip bug

I am using the jQuery UI tool for tooltips and I've found a peculiar bug that I can't duplicate (to show you) or get rid of. Usually, this tool will use the title="whatever" part of a tag to give you a fancy css version of a hover tag. This is…
triplethreat77
  • 1,276
  • 8
  • 34
  • 69
0
votes
1 answer

How to edit "MathJax equation" with jQuery-Tooltip or similar?

How can I edit the text with a "tooltip" as in this screencast, please? I would like to be able to the same with a "mathjax equation" (with Jquery or similar).
0
votes
1 answer

JQuery tooltip (jQueryTool) error multiple instances on table

I'm using the jQuery function tooltip developed by "jquerytools" (http://jquerytools.org/download/) and I'm trying to call multiple callback on each row of the first column in a table. This is the javascript source: $('#table1 tr…
Danilo
  • 2,016
  • 4
  • 24
  • 49
0
votes
1 answer

Show DIV in tooltip for Anchor Tag

I am very new to Jquery. Everything what I see looks strange.. I need to show a DIV section as a tooltip for Anchor Tag. I could able to toggle the visibility of DIV . But, it is not showing up as a tooltip, rather it is displayed on the top corner…
Bharathi
  • 1,015
  • 13
  • 41
0
votes
1 answer

jQuery tooltip disappears after AJAX DOM update

In my layout template , just before closing body tag, I have a Javascript that initializes jQuery tooltips. Here it is (nothing extraordinary): $('.grid-column-header, .small-button, .text-with-second-content').tooltip({ show: { effect: "none"}…
dragonfly
  • 17,407
  • 30
  • 110
  • 219
0
votes
1 answer

multiple tooltips with different images on same page

I've made some tooltips using JQuery Tools, which works fine but I want a second tooltip on the same page with a different image, and I don't know how. Here is my code:
0
votes
2 answers

How do you rebind jQueryUI tooltip?

I am using jQueryUI tooltip on one of my page. $('.sourceItem').hover(function () { $(this).find('.tooltip').show(); $(this).find('.tooltip').position({ at: 'bottom center', of: $(this), my: 'top' }); }); …
qinking126
  • 11,385
  • 25
  • 74
  • 124
0
votes
2 answers

jQuery tooltip plugin to position tooltips based on another div instead of the mouse?

I am using this jQuery tooltip plugin to create simple tooltips on various divs of my page. The plugin positions the tooltip relative to the mouse position. Instead, I would like the tooltip to appear centered above the div that was hovered over,…
David Gay
  • 1,094
  • 2
  • 16
  • 32
0
votes
1 answer

jQuery.min.js file conflict

I have a WordPress tooltip script installed and this script uses jQuery.min.js file which is placed in my header.php and footer.php both files. By doing this, My website layout is totally disturbed and other jQuery plugins are not working properly.…
Phillip Mclauren
  • 417
  • 3
  • 17
0
votes
1 answer

Jquery UI 1.9 tooltip showing twice in tables with radio buttons?

someone knows what's going on here? jsbin showing two tooltips where only one should be code:
Toskan
  • 13,911
  • 14
  • 95
  • 185
0
votes
1 answer

upgrade from 3.2.2 to 3.2.8 breaks jquery-tooltip

I just upgraded my app from 3.2.2 to 3.2.8. I use jquery-tooltip. Once I upgraded, the tooltip changed behavior. Prior to the upgrade, the tooltip would popup positioned relative the element that contains a title, invoked…
RadBrad
  • 7,234
  • 2
  • 24
  • 17
0
votes
1 answer

How can i show a table in a tooltip:XSL

I have a the below tags in xml file: 192.168.1.1 10.10.10.10 192.168.0.0/24 29/3/1391 24 I want to design a…
user1597122
  • 327
  • 1
  • 6
  • 24
0
votes
1 answer

Getting clientX with jQuery Tooltip plugin

I'm using this tooltip plugin: I'm trying to get the clientX of the tooltip area. Meaning, the X position where the client hovered over the element. So far, no luck. Here's an example: $(this).find("div.GanttRange[data-RangeID != '']").tooltip({ …
jbkkd
  • 1,510
  • 5
  • 18
  • 37
0
votes
3 answers

jQuery Tooltips staying on screen with Ajax call

I am doing an Ajax call which pulls some HTML in to a Div. Inside the divs I have text with a title. I am then using that title for a Tooltip. $.ajax({ url: '/feedme.aspx', success: function (data) { $('#liveContent').html(data); …
Matt Facer
  • 3,103
  • 11
  • 49
  • 91
0
votes
1 answer

live binding for bassistance tooltip (http://bassistance.de/jquery-plugins/jquery-plugin-tooltip/)

How can I use live binding for bassistance tooltip (http://bassistance.de/jquery-plugins/jquery-plugin-tooltip/) I'm using this code: $(document).ready(function(){ $('.tooltip[title]').tooltip({ track: true, delay: 0, …
vNext
  • 1,102
  • 4
  • 16
  • 28
1 2 3
14
15