cluetip

get content to tooltip from url in javascript

I'm using cluetip for tooltips in my web site, and I want to set the tooltip text based on the link url. For example: I have a link on my page to "http:abc.com/display?content=sweeties" and I want the tooltip to read "sweeties" Someone show me how, please? ...

rounded css in cluetip

I'm using cluetip for my page, it's work fine in IE 6 and IE 7 but in firefox the rounded box can not wrapped all the content include an image and some text. I couldn't fix this all night long. Some one had an experience show me the way please! Thank you very much! My code look like this: <li> <a href="#" class="scroll" rel="div#1"> <im...

How to include cluetip in a GreaseMonkey script

I'm trying to include cluetip in my GreaseMonkey script. To do this I've defined my userscript as follows: // ==UserScript== // @name myscript // @namespace myscript // @description This is my script // @require http://plugins.learningjquery.com/cluetip/jquery.cluetip.js // @require http://plugins.learnin...

jQuery cluetip memory leak

Hi, I have been tracking down a memory leak in my web app which dynamically removes and adds anchors which have cluetip tooltips attached and I think that I may have narrowed down the problem to the main closure in cluetip which attaches the cluetip to the node (line 32: var link = this, $this = $(this);). I have been running the f...

Cluetip plugin - Why don't urls work?

After installing and configuring cluetip, i realized that the urls you hover over to see the tooltip don't work when you click on them. It's like this on all of their examples - http://plugins.learningjquery.com/cluetip/demo/ (tested in firefox and safari at least) How can I enable the urls that invoke the tooltip to be clicked? ...

How to assert that a jQuery cluetip has been binded to something?

Hi all: In my code, there is a cluetip that binds itself to an anchor. I need to know what sort of properties can I assert when unit testing it? At the moment, all I could do is to assert the id of the cluetip, which seems insufficient. I want to find out whether there is some sort of class in cluetip that changes when it is binded t...

jQuery cluetip('destroy') does not destroy/remove cluetip?

Hi all: I'm trying to make sense of how cluetip actually works. I have a dummy DOM structure which I did some alerts on to check if the cluetip has been removed after the cluetip('destroy') was called on the anchor element. However, the cluetip div still appears to be alive and well. This really confuses me... Correct me if I'm wron...

jQuery cluetip: Manipulate content after rendering

Hi, I may be stating this incorrectly, but is there any way to manipulate (using JavaScript) the content in an cluetip once the content has been (dynamically) loaded to the external .jsp? I have a list of items being displayed, and I want to bold some of them. I cannot add ID's or classes individually to any of these items in the list, ...

jQuery Cluetip not activated until after hover or click event

I'm not sure what is causing this, but I am using cluetip and binding it to a live event (either click or mouseenter), but in each situation the cluetip isn't firing until after one click or hover event. I am using the live event for ajax loaded content, but I'm also having this issue with non-Ajax loaded content. I'm not sure why this i...

Jquery Cluetip - clean up between ajax loaded content

Hi, I'm using the jquery cluetip plugin and trying to figure out how to remove any open cluetip dialogs once i load new content via ajax. I am either stuck with the dialog boxes still showing on top of new content, or the ways i've tried to fix this actually remove all future cluetip dialogs from showing at all. Here's my code, thanks ...

jQuery: how to apply plugin in a "live" fashion

Is there a way to apply plugin to element in a "live" fashion, just like we can attach handler that survives ajax calls? Right now we have some code that uses "cluetip" in a rad grid, but after ajax, it gets dropped. $('a.clickableSticky').cluetip({ splitTitle: '|', showTitle: false, ...

Close cluetip when mouse out of the link

I there an option to close cluetip when the mouse is of from the link? There is mouseOutClose option but it doesn't close cluetip if you don't hover the cluetip itself first. Here is an example: http://plugins.learningjquery.com/cluetip/demo/ - the first link under the jTip Theme ...

Cluetip for every dynamically generated row in table

Hi all, I would like to display cluetip [jQuery] plugin for every row of dynamic grid in .aspx page. The content in cluetip should be fetched from database dynamically while loading the cluetip plugin. Can anyone suggest any way of doing this? ...

JQuery: Cluetip questions - Turning off tips and maximum height

How do I turn off the tips temporarily? I see the ability referenced on the website a couple times, and in this forum as well, but for some reason I can't find the command that turns them off. I just need to disable them for a bit, then re-enable them. Is there a way to give a tooltip a maximum height? I have a bunch of tooltips, som...

jquery cluetip breaks when loaded more than once

I am using the jQuery cluetip plugin in a portal environment where there can be more than one instance of a portlet on a portal page. Each portlet is its own app, so it really knows nothing about the other portlets. Each portlet needs to use the cluetip plugin, so it is loading it when it needs it. The problem is that, when the cluetip s...

Cluetip open at the same spot

Hallo I am using cluetip and it works perfectly. but I want all the tip to open on the exact samt spot on the site. my clue tip looks like this atm $('a.btn').cluetip( { cluetipClass: 'jtip', local:true, sticky: true, dropShadow: false, hoverIntent: true, closePosition: 'title', sticky: true, leftOf...