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
2
votes
1 answer

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:…
Kimtho6
  • 6,154
  • 9
  • 40
  • 56
2
votes
1 answer

Driving Javascript code with synthetic mouse events

I am trying to inject events to trigger the jquery.cluetip.js library to display its popup for website testing purposes using behat & mink. We need to do this so that needed HTML/DOM elements are put in place by cluetip for the subsequent test…
rivimey
  • 921
  • 1
  • 7
  • 24
2
votes
1 answer

Jquery Cluetip - clean up between ajax loaded content

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…
ted776
  • 135
  • 2
  • 10
2
votes
5 answers

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…
kenny99
  • 259
  • 6
  • 19
2
votes
1 answer

jquery cluetip on dynamic elements

I can't seem to get this to work properly. I am writing several links to the DOM (looping through a json file and appending to the DOM), and then I need those elements to trigger tooltips on hover. I'm not seeing a good example of this method…
Jason
  • 7,612
  • 14
  • 77
  • 127
1
vote
1 answer

Does cluetip work on a link at the top right of a page?

I am using jquery cluetip and i have a link at the top right hand of the page and when i click it, I want the tool tip to show up at the bottom of where i click but instead it shows up either in the middle of the screen or at the top of the screen. …
leora
  • 188,729
  • 360
  • 878
  • 1,366
1
vote
1 answer

How to show dynamic content in cluetip?

I am using cluetip to show a tooltip when a user hovers over a link in my aspx page. I want this cluetip to show content from the database. I don't know how to do it. My code: $(document).ready(function () {$('a.title').cluetip ({ splitTitle:…
user728148
  • 159
  • 1
  • 6
  • 19
1
vote
1 answer

Make cluetip keyboard accessible (display on tab focus)

I'm struggling to figure out how to make a jQuery cluetip display on focus of the trigger text link which uses hover. I need it to work when tabbing (onfocus) through content for accessibility purposes.