0
votes
1answer
22 views

Reset tooltip on close

I'm using jQuery UI's tooltip and ultimately, I'm trying to reset the tooltip back to it's first initial state. Since there doesn't seem to be a “reset” function, any idea how I can accomplish this? ...
6
votes
2answers
73 views

Jquery UI Tooltip moves out of parent div

I have a jQuery tooltip as given in the following link: http://jsfiddle.net/ronnykroy/amYZW/2/ HTML: <div id="parent"> <div id="child" title="It has been a very long text"> ...
2
votes
2answers
276 views

Tooltip not working jquery UI

I'm trying to load jQuery UI tooltips into a web page within an MVC4 view but I'm getting the error: Uncaught TypeError: Object [object Object] has no method 'tooltip' I'm using jQuery 1.9.1 and ...
0
votes
1answer
57 views

How do I Update the Content in Jquery UI Tooltip in Realtime?

I have an element that when hovered over, it displays the price of the item (in a game). I'm using the jQuery UI tooltip to power the display of the information about each item. When the item is ...
0
votes
0answers
52 views

how to custom position jquery-ui tooltip for each item

I use default code to apply for all website have tag img or attribute is tootltip and title $(document).tooltip({ track: true, items: "img, [tooltip], [title]", content: ...
0
votes
0answers
65 views

Positioning a jquery ui tooltip with an ajax call as content

I am trying to position a tooltip but it is not working when I use an ajax call as content. It seems like the tooltip is delaying to show itself while the ajax call is resolved and the position can't ...
0
votes
1answer
262 views

How to use jQuery Tooltip?

I am using jQuery Tooltip and everything is working fine with one little problem: I am not seeing the arrow shape of the tooltip. Instead I am getting a square shape. I want to get the arrow shape ...
0
votes
1answer
182 views

jQuery UI tooltip on toggle

There is such problem: Tooltip doesn't show on page. it shows only if i click on toggle. How can i do that tooltip will show without clicking on toggle...? Here is the code: Js: var tooltipD = ...
2
votes
2answers
420 views

jQuery UI Tooltips - How to correctly position vertically centered to the mouse?

Update: Still looking for a viable solution, but check my answer below, it may help you or give you an idea. It works for a specific resolution. I'm using the jQuery UI tooltips plugin but I m having ...
0
votes
2answers
109 views

jqueryui tooltip global bind

I have dynamic elements on the page that come and go, hidden and show etc. Instead of binding tooltip() each time the element is appended to the dom, I would like to set a global handler (via ...
0
votes
0answers
131 views

jQuery UI 1.10.1 Tooltip not showing unless tracking is enabled

I am stuck trying to get jQuery tooltips to appear. They only show when tracking is enabled. $('.tooltip[title]').tooltip({track:true}); That works just fine, and the tooltips appear moving with ...
2
votes
2answers
269 views

Changing the title attribute using jQuery while hovering over the element

I have div button that has a title attribute that us used as the text for tool tips using jQueryUI. I would like to change the tooltip of the button by clicking it. However, when the button is clicked ...
0
votes
1answer
48 views

Creating and submitting a form in tiptip

I just implemented tiptip and found it fantastic to use. Now i want to make a form and use it in tiptip tool tip so that user can fill and submit it. I have created tiptip as $('.div').tipTip({ ...
1
vote
2answers
295 views

jQueryUI tooltip Widget to show tooltip on Click

How the new jQueryUI's tooltip widget can be modified to open the tooltip on click event on certain element's on document, while the others are still showing their tootip on mouseover event. In ...
0
votes
0answers
39 views

My tooltip snaps to owning div

I have created a simple(?) div with a nested div and a tooltip. You can see it here: http://jsfiddle.net/ptN8U/1/ I activate the tooltips by calling $('.tt').tooltip({ tooltipClass: "tooltip", ...
0
votes
0answers
147 views

Issue with .tooltip in JQuery UI

Hey guys I using this to propagate JQuery tooltip using: $(function() { $( document ).tooltip({ position: { my: "center bottom-20", at: "center top", using: ...
0
votes
1answer
759 views

Very simple jQuery UI tooltip not working

I replicated the example of this site: http://jqueryui.com/tooltip/#default Html: <h3 title='this is the title of hello world'>hello world</h3> JS: $(document).ready(function() { ...
0
votes
1answer
1k views

Jquery UI tool tip close icon

I am trying to show Jquery UI tooltip on page load with a close/cross mark icon inside tool tip content. Tooltip should be closed on clicking X icon. I dont want to use any plugins. Please suggest ...
1
vote
2answers
223 views

jQuery UI Tooltip and AJAX, how to implement live() with it?

On certain pages I have code like $('.tooltip').tooltip();. Example element would look like: <a title="Tooltip content" class="tooltip" href="javascript:void(0);"><img src="icon.png" ...
2
votes
1answer
743 views

jQuery UI Tooltip Widget auto close

How i can automaticly close jQuery UI Tooltip Widget after 1 sec. I use following code: var du=1000; $(document).tooltip( {show:{effect:'slideDown',delay:du,duration:du/2}}, ...
2
votes
1answer
532 views

jQuery UI Tooltip Widget remove title attribute

I try use jQuery UI Tooltip Widget but i find some problem for me. If the tooltip is open, it removes title attribute on element over which it opened. How i can fix this? I try something like this: ...
2
votes
3answers
2k views

Using jQuery UI Tooltip with custom arrow causes tooltip issue

I'm using Tooltip custom style plugin... Now I want to display my tool tip message as displayed on these sites and as shown in the photo (e.g., with an arrow to be part of the tooltip): Example ...
1
vote
0answers
98 views

Keep JQuery UI 1.9 Tooltip on screen

I wonder how to insert controls (buttons, forms, etc) inside JQuery UI tooltips. How to keep them visible and fade them out using a delay / mouseout control, with custom content ajax loaded? url: ...
0
votes
1answer
1k views

jQuery UI 1.9 tooltip on button not working on hover

i'm using jQuery UI 1.9 to make buttons of checkboxes and for tooltips. My HTML is simple: <input type="checkbox" id="jq-ui-button" value="Test" title="tooltipppp"> <label ...
0
votes
1answer
143 views

jQuery tooltip appears in the wrong place on hover

I'm using jQuery UI position() to position a custom tooltip. The problem I have is that the tooltip always appears in the same place (at the top of the table), when I want it appear when an anchor is ...
0
votes
1answer
483 views

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 ...
0
votes
1answer
253 views

Jquery UI Tooltip is possible to have a icon and a title on it. At the examples are only simple texts

At http://wiki.jqueryui.com/w/page/12138112/Tooltip there is an example for M1 of a Tooltip with an icon and a title. How can you do this with current Jquery UI Tooltip?
1
vote
1answer
186 views

Tooltip won't show in Yii jquery button

If you create a jQuery UI button in Yii, the default behavior is that the text of the button should show as the tooltip. You can override this with the 'label' option, but neither of these works for ...
1
vote
1answer
754 views

jQuery tooltip and drop-down (combo-box): Issue in IE 9

In IE 9, if I apply tool tip on drop down, it not allowed me to select any option. <select title="my tooltip dropdown"> <option>1234</option> <option>1234</option> ...
0
votes
1answer
184 views

Jquery UI Tool Tip Trigger with Delayed Release

I am trying to use the jQuery Tool tip function and from the examples I am having issues altering the code for the function I am after. http://jqueryui.com/tooltip/#forms I have several coulored ...
1
vote
3answers
1k views

Jquery UI tooltip. Set timeout and set hover events. Freeze tooltip on mouseover

I've googled about 2 days and can't figure out how to set timeout for http://api.jqueryui.com/tooltip/ ??? Maybe i should use jquery hoverIntent ? here is my code $('*[class*="help_"]').tooltip({ ...
0
votes
1answer
328 views

JQuery Mobile Slider Tooltip (dynamic)

How to use Tooltips with JQM Sliders? I would like to add Tooltips to my JQM Ranges (e.g. 1-5), saying at what point the ui-slider-handle is positioned ("Your choice: 3"). I've tried qTip: ...
2
votes
2answers
2k views

Turn off jQuery UI tooltip for certain elements

For simplicity, I'd like to enable the jQuery UI tooltip widget on all elements of the page: Then disable it for certain elements or elements and their descendants. But this doesn't seem to work: ...
3
votes
3answers
3k views

How to break line in jQueryUI tooltip

The new version of jQueryUI (1.9) comes with the native tooltip widget. After testing with it, it works fine if the content (value of the title attribute) is short. But if the content is long, the ...
7
votes
1answer
3k views

jquery ui tooltip manual open /close

is there a way to manually open close the jquery ui tooltip? I just want it to react to a click event toggling on/off. You can unbind all mouse events and it will rebind them when calling ...
0
votes
3answers
3k views

jquery UI tooltip - not showing on the top of element

Please check my code at this JS FIDDLE I want my tooltip to show on top of the element. what am I doing wrong? I also didn't find any usable info about position property in the jquery UI ...
0
votes
1answer
465 views

jquery.tooltip to jqueryUI 1.9.0 missing showBody

I am working on upgrading to jQueryUI 1.9.0 and I have jquery.tooltip that I'd like to transition to the tooltips that are now in jQueryUI. The one problem is that jQueryUI tooltips do not have the ...
0
votes
1answer
2k views

JQueryUI Slider - Tooltip for the Current Position

At the moment I have a slider and an small input text box which updates based on where you scroll on it. Here is the javascript: $("#slider").slider({ value: 500, min: 0, max: 1000, ...
0
votes
3answers
633 views

tooltip on hidden “select” element doesnt work

I develop website using combobox from jquery UI, all work fine. But when I tried to apply tooltip on "select" element, tooltip doesn't work. html: <select id="combobox_courses" title="tooltip ...
3
votes
1answer
6k views

.tooltip() is not a function

I am trying to use the .tooltip() that I found from the following: Jquery-ui tooltip. What I have is a rails app that has some information in a table. In separate cells. Currently you can view the ...
2
votes
1answer
556 views

Jquery Event Calendar with tool tip

Can somebody suggest me a good jquery calender with tooltip.
0
votes
0answers
42 views

Advice system of hints (tips) on site, that explain to user how to use functionality of the site? (jquery-plugin)

I'm looking for plugin for Jquery, that can help me to create interactive tutorial (guide) on my site. Actions step by step (like this), or another way. And I like this one (on github). Thanks!
2
votes
4answers
4k views

jQuery ajax tooltips: where to find a nice plugin?

I saw one perfect ajax tooltip at forum engine Xenforo (try mouseover on any topic and you'll see). I know it's made with jQuery. Maybe there are some nice plugins in internet like this. Appreciate ...
3
votes
3answers
7k views

trying to use jquery tooltip plugin, object has no method “tooltip”

I'm using this tooltip: http://flowplayer.org/tools/demos/tooltip/index.html I have the following lines in my html file: <script src="/javascripts/home.js" ...
1
vote
1answer
590 views

Jquery UI slider tooltip class

I'm having some trouble finding the css class linked to the tooltips in the Jquery ui slider... does anyone know what it's called, or another way I can adjust the tooltip width?
0
votes
3answers
178 views

Display content around an image's onhover event?

I was trying to do something similar to movies.com, like they do with their movie posters here, http://www.movies.com/new-releases When you hover a poster, a tooltip/popup appears with all the ...
4
votes
1answer
791 views

Confirm tooltip dialog with qTip2?

So, i'm trying to create a small confirmation dialog (inline, toopltip) when a user clicks a delete button. I imagine it to look kinda like this (but with a small text and OK & Cancel ...
0
votes
1answer
277 views

How does a javascript tooltip work

I just wanted to make a tooltip of my own[custom] and checkout how it goes. Shockingly it didn't get the results i wanted. I wanted the tooltip to follow my mouse but ended something different. Below ...
2
votes
4answers
971 views

Which tooltip plugins are compatible with jQuery 1.5 (the current version)?

There are a ton of excellent tooltip plugins for jQuery, but most seem outdated. In particular, we wanted to use qTip, but it only supports jQuery 1.3. Which tooltip plugins support jQuery 1.5? ...
2
votes
1answer
364 views

Does qTip support the latest version of jQuery?

On the qTip site, the version of jQuery bundled with the qTip download is dated -- not the current stable 1.5.1 release of jQuery. Does anyone know if qTip can work with 1.5.1 of jQuery? The qTip ...

1 2