Tagged Questions
0
votes
1answer
28 views
IE compatibility with jQuery Tools Tooltip
I've started designing a page using the jQuery Tools' tooltip (as demonstrated here).
I've tinkered with it a bit to allow onClick show and onClick hide. Works fine in Chrome, Safari and Firefox.
...
0
votes
0answers
20 views
jQuery Tools - Multiple Tooltips opened at the same time?
I've successfully managed to install multiple tooltips on a webpage using jQuery Tools Tooltip pluggin.
The problem is that they don't stay open when another one is opened. I can make them stay open ...
0
votes
0answers
150 views
jQueryTOOLS Tooltip on image click instead of mouse hover
Good morning. I've stumbled upon a little problem, if you could help me it'd be great.
I've searched for Tooltips that support HTML content but most that I've found only support text passed by the ...
0
votes
1answer
266 views
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 ...
-1
votes
2answers
1k views
jQuery Tools Tooltip broken with jQuery 1.8.1
I had jQuery Tools Tooltips working with jQuery 1.7.1. However, I had to update my jQuery to 1.8.1 to address a sweet IE8 and lower problem. The tooltips no longer work with jQuery 1.8.1. Anyone ...
0
votes
1answer
69 views
Adjust position of some tool tips based on class of trigger using jqueryTOOLS
I am using the jqueryTOOLS plugin for jquery to generate tooltips for a set of form fields on my site.
The event trigger is dictated by a small piece of javascript:
$(function() {
$("#myform ...
0
votes
1answer
450 views
jquerytools tooltip filled with ajax
I'm trying to load some content into the jQueryTools tooltip, depending on the trigger parent's element. Now I'm stuck with this:
<div id="id-1">
<div>
<div>
...
1
vote
0answers
299 views
Jquery Tools Tooltip won't disappear
So this may be a bug but its bugging me, no pun intended.
Here is the issue, when you hover over the input field the tooltip shows up to the right, GREAT! The issue is if you hover over the now ...
0
votes
1answer
253 views
Is it possible to dynamically generate jQuery Tools tooltip elements?
According to the jQuery Tools documentation, the tooltip element must be placed immediately following the trigger in the HTML. However, I need to apply the tooltip events to a dynamically-generated ...
5
votes
5answers
638 views
Jquery tools tooltip misplaced
I am facing an issue with Jquery Tools Tooltip.
You can see on : http://www.toulousehoopsummit.com/l-ecole-en-basket
The 3 pictures at the bottom have a tooltip.
In IE9 and FF12, the tooltips are too ...
1
vote
1answer
2k views
jquerytools tooltip with content from an AJAX call?
We are using jquerytools and want to use the tooltip functionality for showing content
loaded through AJAX.
The documentation of jquerytools tooltip say that the content of the tooltip must be ...
1
vote
1answer
400 views
jQuery tooltip makes href title disappear
I'm sure this is a simple problem .. i've wasted too much time already on it
I have the following image:
<img src="/_/img/icons/103-map.png" alt="Find Me" title="come and find me..." ...
0
votes
2answers
5k views
jQuery tools tooltip, position with absolute & margin
I'm using the jquery plugin: Tools.tooltip() Seems like the positioning is really a problem.
When the tooltip is wrapped in some container with position:absolute, you'll need to add relative:true in ...
1
vote
1answer
514 views
jQuery Tooltip in PHP “while” loop not working
I want to display tool-tips on my website, and I'm using this code: http://flowplayer.org/tools/demos/tooltip/table.html
I'm using a while loop to create table rows <tr>. Here is how my ...
0
votes
2answers
1k views
jQuery Tools: Tooltip, jQuery reference to “this” attribute
I'm implementing a Tooltip for cells within table and I need to be able to grab the target's data-message attribute.
$("#pricing_plans_table .sku_tooltip").tooltip({
// each trashcan image ...
2
votes
1answer
413 views
jQuery TOOLS: ToolTip with class selector?
Alright, so I have no idea what's going on here... I'm trying to apply a ToolTip with a class as the selector. The examples on their website are using and ID as the selector, but that's not possible ...
0
votes
1answer
507 views
How do I correctly show a JQuery Tool tooltip only on mouse click?
Whenever a user clicks a menu item I want to show a tooltip:
// Initialize tooltips for each menu_item
$(".menu_item_tooltip_link a.tooltip").tooltip({
opacity: 1.0,
position: "bottom ...
0
votes
1answer
488 views
jQuery Tools tooltip problem - jQuery
jQuery:
$(function() {
$("img").tooltip();
$("a").tooltip();
})
HTML:
<div id="container">
<div id="main">
<a href="#">testing</a>
<img src="trollface.jpg" ...
1
vote
1answer
1k views
Problem defining multiple HTML tooltips using jQuery Tools
I'm trying to create a HTML tooltip for each row in table using jQuery Tools. I thought it would be very easy because I'd be able to use a syntax like this:
$("#myTable tr").tooltip({
tip: ...
1
vote
8answers
10k views
jQuery Tools Tooltip - Change Title
Got a problem with the jquery plugin Tools tooltip (http://flowplayer.org/tools/tooltip/index.html)
I need to change the title of the element..
reloadTooltip();
$("#example").attr('title', ...
1
vote
1answer
630 views
div-based tooltips within P-tags
I'm trying to implement tooltip functionality using jQueryTools, on content coming from a CMS (Alterian). The idea is that editors mark words in their texts with a hash and brackets wherever they want ...
0
votes
3answers
2k views
jQuery flowplayer tooltip: show/hide events not being called in correct order
I am using jquery tools Tooltip to create tooltips.
I created a tooltip like this...a tooltip which only opens on clicking and closes when I press a close button(triggering "closeTooltip" event).
...
1
vote
2answers
2k views
Is jQuery Tools Tooltips only about 90% reliable? (and how to fix it?)
jQuery Tools 1.2.5 Tooltip seems quite slick and fancy, but I added it to our development site, and it works 90% of the time. Sometimes, the mouse hover over a tab and no tooltip shows up, and ...
0
votes
2answers
5k views
Jquery tools - live tooltip for Ajax
I have a working version of tooltip (jQuery Tools - http://flowplayer.org/tools/demos/tooltip/index.html) ,
jQuery(document).ready(function() {
jQuery('.more_info').each(function(){
...
0
votes
0answers
537 views
jQuery with jQuery TOOLS: inside scripts not working
If include this in index.php:
<script src="http://cdn.jquerytools.org/1.2.5/full/jquery.tools.min.js"></script>
That contains extra tools + jquery 1.4.2
Instead of this:
<script ...
1
vote
1answer
895 views
Stop JQuery Tools Tooltip from appearing on undefined title values
<input id="name" name="user[name]" size="30" title="Please enter a valid name." type="text" />
<input id="email" name="user[email]" size="30" type="text" />
$(document).ready(function(){
...