Questions tagged [cluetip]

clueTip is a jQuery plugin for displaying stylized tooltips

Note from site: This plugin is no longer being maintained.

See https://github.com/kswedberg/jquery-cluetip

65 questions
0
votes
2 answers

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…
Zendog74
  • 187
  • 1
  • 3
  • 14
0
votes
0 answers

JQuery ClueTip with ColdFusion - Javascript $(document).ready() misfire

I was wondering if $(document).ready(...) fires for a cluetip content page, in general, after it is loaded. It doesn't seem to at all if the content page is a .cfm, however I have yet to try this for a normal .htm file (I'm assuming there is no…
samus
  • 6,102
  • 6
  • 31
  • 69
0
votes
1 answer

Cluetip for every dynamically generated row in table

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?
Mayur
  • 3,063
  • 10
  • 42
  • 55
0
votes
1 answer

Looking for comparable tooltip capability for AngularJS that cluetip gave me

I've gotten the code from the post Angular-ui tooltip with HTML working but it's capabilities are not near what cluetip gave me. Things like not having automatically aligning based on screen position and other options make it not very useful for…
Peter Kellner
  • 14,748
  • 25
  • 102
  • 188
0
votes
1 answer

how to make cluetips jquery show right side of
I have a table that load some datas from an ajax query.. I tried to make a cluetip (local, with arrows) on it.. this is my cluetip options: $('.load-local').cluetip({ sticky: true, arrows: true, showTitle: false, …
avdnowhere
  • 177
  • 2
  • 16
0
votes
1 answer

jQuery cluetip: Manipulate content after rendering

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…
user245848
0
votes
1 answer

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

Possible Duplicate: jQuery cluetip('destroy') does not destroy/remove cluetip? 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…
BeraCim
  • 2,317
  • 8
  • 49
  • 78
0
votes
1 answer

Creating a cluetip title

I have a cluetip that is displayed when a user clicks a link. When the tip is displayed I want it to have a title but it does not want to show the title. $('#spouseMortalityImage').cluetip({ titleAttribute: 'alt', titleAttribute:…
Chris Quibell
  • 339
  • 3
  • 4
  • 18
0
votes
1 answer

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…
Jonas
  • 103
  • 1
  • 1
  • 4
0
votes
1 answer

jQuery cluetip memory leak

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…
Andrew
  • 53
  • 1
  • 1
  • 9
0
votes
1 answer

jquery cluetip is not working when data is loaded from ajax

I'm using the jquery cluetip plugin and it is working fine. The problem is that when page is loaded from ajax and I want to use cluetip on any element of this page then it is not working. I already call .cluetip() function on ajax loaded…
Piyush Kumar
  • 85
  • 1
  • 9
0
votes
1 answer

JQuery- Change href of anchor tag using value in Div

I am having an issue with changing the href value in anchor tag. Basically, I want to use a cluetip which opens a tooltip page based on the employee ID of the user who has logged in. Cluetip Code: $(document).ready ( function () { …
user728148
  • 159
  • 1
  • 6
  • 19
0
votes
1 answer

how do i get a tooltip such as cluetip, to work in Internet Explorer?

My cluetip works great in Chrome, but whenever I bring the same exact code to IE it doesn't even show up or it shows the default tooltip. Any suggestions? Is there some code I can put in my cluetip to make it work in IE? Any help would be…
DBroncos1558
  • 141
  • 3
  • 10
0
votes
1 answer

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 …
Rich Seller
  • 83,208
  • 23
  • 172
  • 177
0
votes
1 answer

how to refresh cluetip when value of knockout observable changes

how to change whats inside the cluetip. $('a.cal_box').cluetip({local:true, hideLocal: true ,onShow: function(ct, ci){ this.calendar = $('
').datepicker({ beforeShowDay: daysToMark,onSelect: function(dateText, inst) { var date =…
rohitarora
  • 1,380
  • 2
  • 13
  • 20