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
7
votes
3 answers

how to encode apostrophes for a webpage

i am using the cluetip plugin and the simple use case is to to put the content in a title attribute, like below: Text i am now running into issues where the string that is inside "detail content' has an…
leora
  • 163,579
  • 332
  • 834
  • 1,328
6
votes
1 answer

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…
epitka
  • 16,049
  • 19
  • 81
  • 130
6
votes
1 answer

Using google charts api and displaying content via ajax in cluetip

I have a jsp page that uses google charts api to display data in the form of bar charts. Here is the code for that. I want to display this page in a tooltip (cluetip). My Google Chart code works well when I directly open that page in the browser.…
Ashwin
  • 10,386
  • 29
  • 103
  • 172
5
votes
4 answers

Combining jquery cluetip and hoverintent?

I'm using jquery's cluetip to show, huh, tooltips :-) I made them sticky, because I want the user to be able to move the mouse to the shown tooltip - if they wish. However, if the user does not move the mouse to the tooltip, I want the tooltip to…
profke
  • 51
  • 3
5
votes
1 answer

Passing parameters to a cluetip's (coldfusion) content page

I'm using a cluetip for displaying a record's additional information, like so: #Manufacturer# $("a[id^='a_manu_']").cluetip(); clue_tip.cfm
samis
  • 5,746
  • 6
  • 29
  • 64
3
votes
2 answers

why am i seeing the close button twice when using cluetip

I am using jquery cluetip and i have noticed taht in some cases the first time i click on an items it shows the CLOSE text twice, when i click a second time, it only shows it once. So first time i see this: and the second time i see this: Has…
leora
  • 163,579
  • 332
  • 834
  • 1,328
3
votes
1 answer

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…
SenorPuerco
  • 839
  • 2
  • 8
  • 18
3
votes
2 answers

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

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…
BeraCim
  • 2,217
  • 7
  • 47
  • 78
3
votes
1 answer

Changing cluetip content after page load

I want to change cluetip content after the page is loaded. Let's say I have a button in my cluetip and after clicking it, I want it gone. So here's the cluetip: $('a.notice_tooltip').cluetip({activation: 'click', cluetipClass: 'jtip' , local:true…
max
  • 3,618
  • 9
  • 49
  • 97
2
votes
1 answer

Jquery Cluetip - using javascript inside tooltip

I am using Jquery Cluetip for my tool-tips. The tool-tip content is loaded with the AJAX function in Cluetip. In the loaded content I want to use Javascript to increase usability. index.html:
Gijs Paulides
  • 1,106
  • 9
  • 26
2
votes
1 answer

Is there any way in jquery clueTip to have the escape key close a sticky tooltip?

i am using jquery cluetip and it works great. I have it in sticky mode so i can hover over the tooltip and click on links, etc. The one gap i have is that its a bit annoying to have to mouse click on the uppoeer right to close the cluetip . Is…
leora
  • 163,579
  • 332
  • 834
  • 1,328
2
votes
1 answer

jQuery cluetip activation

How make activate cluetip on event ready or onload? The clueTip plugin allows you to easily show a fancy tooltip when the user's mouse hovers over (or, optionally, clicks on) any element you designate in your script. If the element includes a…
TigorC
  • 485
  • 1
  • 6
  • 11
2
votes
1 answer

Cluetip popup windows getting cutoff by browser

jQuery('area').cluetip({ sticky: true, positionBy: 'auto', width:370, dropShadow:false, closePosition: 'top', closeText: '', activation: 'click' } Straight to the point: when i click to…
Shahbaz
  • 41
  • 3
2
votes
5 answers

How can I set the title of a cluetop tooltip from ajax callback when sticky: true?

I am using cluetip plugin which is great. I am populating the plugin using Ajax but I can't anywhere (in the documentation or examples) on how to set the title from an ajax callback. Is updating the title from ajax supported in cluetip? UPDATE…
leora
  • 163,579
  • 332
  • 834
  • 1,328
2
votes
3 answers

jQuery clueTip: show/hide on mouseover and sticky on click

I'm using the cluetip plugin together with the jQuery FullCalendar to show event details which works quite good. I would like to have a link in each description that the user can click on. But I don't want to have the users have to click on each…
cbix
  • 490
  • 1
  • 8
  • 15
1
2 3 4 5