Tagged Questions

qTip is an advanced tooltip plugin for the jQuery JavaScript framework.

learn more… | top users | synonyms

9
votes
3answers
81 views

Assigning JavaScript primitives to their named equivalent variable like “constants”

I was looking at the source code to qTip 2 and saw the following: // Munge the primitives - Paul Irish tip var TRUE = true, FALSE = false, NULL = null; I can't come up with a reason you ...
6
votes
3answers
4k views

jQuery qTip: How to attach a single tooltip div to multiple target divs?

The normal behavior for the jQuery qTip plugin is to create a new hidden div for every tooltip item assigned. Is there a way to tie a single hidden tooltip element to multiple targets, to avoid ...
5
votes
2answers
106 views

Jquery qTip - Trigger before create

i try to trigger someFunction() before the qtip is created $('.selector').qtip({ content: { text: someFunction(this.id) } }); This code works but i think this is a dirty solution. Is there ...
5
votes
2answers
136 views

JQuery QTip plugin foreach function

I have a problem with qtip plugin. Notting shown in qtip div when I mouseover a user avatar. My code for listing users: <% foreach (var user in Model){%> <div class="avatar"> ...
4
votes
6answers
5k views

Trigger jQuery Qtip on FullCalendar dayClick

I have a jquery fullcalendar. I would like to trigger jquery QTip (or other jquery solution (such as a lightbox)) when I click on a day to bring up a list of options. This question is similar to this ...
4
votes
5answers
717 views

How do I get a thin border in qtip with round corners?

I try to get a thin border with round corners for the tip in qtip, using: border: {width: 1, radius: 7, color: "#B8E25E"} (Like explained here: ...
3
votes
1answer
151 views

jquery qTip: making callout stay there

How do I make a qTip callout show when the page is loaded, and ALSO stay there even if I hover over the field. In essence I just want a fixed callout, and am using qTip for its ease of positioning ...
3
votes
2answers
185 views

Using qTip with ASP.NET MVC unobtrusive javascript validation

on the new jQuery qTip page, there is a really awesome sample of using it with jQuery Unobtrusive Validation, which can be found here In ASP.NET MVC 3.0, we have the unobtrusive validation as part of ...
3
votes
3answers
1k views

Integrating qTip with MVC3 and jQuery Validation (errorPlacement)

I am working on a proyect with MVC3 and I am trying to integrate qTip2 with jQuery validation in order to show errors as floating tips. The problem I am having is that apparently calling ...
3
votes
3answers
1k views

jQuery ui - datepicker prevent refresh onSelect

I'm using jQuery ui Datepicker to display a yearly inline calendar full of "special dates" (with colors). This is to allow users to batch special dates by selecting a range and some other details. ...
3
votes
1answer
732 views

Automatically show qTip (jQuery plugin) tooltip after page load

Has anyone ever used qTip to create a tooltip that responds to a click on an element, but also is set to popup after the page loads? I tried playing around with setTimeout, but I can't seem to get it ...
3
votes
3answers
737 views

jQuery qTip callback not working

I have qTip being called on items within a table.. $('#orders_table a[rel]').each(function (){ $(this).click(function(){ return false; }); ...
3
votes
1answer
294 views

jQuery qTip doesn't work under jquery-1.4.2?

i'm using jQuery qTip plugin, but it doesn't work with latest version of jquery(1.4.2) it works fine with 1.3.2. What is the reason? Thanks much UPDATE: here is the simplest example, which ...
3
votes
2answers
106 views

how do i get the content of this div using jquery

i want to show a tooltip when i highlight over any text inside of "class=div". I have the following HTML: <div class='test'>Test</div> <div class='tooltip'>Tooltip 1</div> ...
3
votes
1answer
125 views

jquery - get an html attribute from within a function call

I'm trying to call a different tooltip according to an anchor tag's id attribute. My JavaScript code is as follows: $(function() { $('.tippy').qtip( { content: { url: ...
3
votes
1answer
555 views

Question Qtip through iFrame - With JQUERY LIVE

I'd like to find a fay to use Qtip in an iFrame on my page. I found a way to use QTIP on an iframe, but not with JQUERY LIVE.... qTip through an iFrame: ...
3
votes
3answers
2k views

Dynamic parameters for dynamic contents with qTip

I want to pass a dynamic parameter with qTip, but it fails. my_ajax_controller.php just displays the variable type, but not q. $('a.menu_help').qtip({ content: { ...
2
votes
1answer
589 views

ASP.NET MVC Validation Using qTip jQuery Plugin

I am using the solution found here to show client side validation errors in a tooltip using the qTip jQuery plugin. This solution works great for client side validation but I would love to able to ...
2
votes
2answers
307 views

Jquery ajax and qtip dynamic content

I have a jquery ajax call and I need to get the results into a qtip. My Ajax call (to umbraco base) jQuery("div.videoCardBack").mouseover(function (e) { var getFormUrl = ...
2
votes
1answer
364 views

qTip2 - refresh tooltip while it is active

I'm using qTip2 here, and need the ability to refresh the content of the tooltip while it is still active. The elements with the tooltip have a click event that does some calculations that can change ...
2
votes
2answers
347 views

jQuery qTip in IE9 - Sliding in animation

I'm using the qTip plugin for tooltips. In IE9, the qTip "slides" in when it appears. Sometimes it slides in from the top of the screen, sometimes from the left, seemingly randomly. Everything else ...
2
votes
2answers
179 views

jquery qtip not showing unique tooltips in the right places

i have a table. in each table i want it to show a tooltip via qtip when someone hovers over a TR. heres my jquery code: $('.contacttr').qtip({ content: { text: ...
2
votes
4answers
599 views

Which tooltip plugins are compatible with jQuery 1.5 (the current version)?

There are a ton of excellent tooltip plugins for jQuery, but most seem outdated. In particular, we wanted to use qTip, but it only supports jQuery 1.3. Which tooltip plugins support jQuery 1.5? ...
2
votes
1answer
209 views

Does qTip support the latest version of jQuery?

On the qTip site, the version of jQuery bundled with the qTip download is dated -- not the current stable 1.5.1 release of jQuery. Does anyone know if qTip can work with 1.5.1 of jQuery? The qTip ...
2
votes
3answers
289 views

how jquery qtip makes its arrows?

qtip is not using images to make its arrow, like other tips out there.. so i was wondering how are they making there dynamic arrow tip? person can easily change the size of the tip with width/height. ...
2
votes
1answer
2k views

How do i create a tooltip using qTip2 that is assigned at run time to page elements

I'm trying to have a qTip2 bubble created but not displayed at load time. Then display it under any image clicked. Please advise what is the best way to do this. (using qTip to solve the bubble going ...
2
votes
2answers
422 views

jQuery DOM array as an argument

I'm working on some HTML pages, and I needed to add some tooltips. Because of the constraints, I chose a Jquery plugin named qtip. I really ain't that good with JavaScript, but I managed to do ...
2
votes
3answers
1k views

jQuery qtip doesn't draw little arrow tip in IE8 (or IE7)

I'm using jquery's qtip plugin to draw a tooltip, and it works fine on FF but not on my versions of IE. It looks like for IE, the plugin uses vml tags instead of canvas tags. Is there something ...
2
votes
1answer
492 views

Loading jQuery qTip code dynamically

For an application I am writing, I have the need to dynamically load content into a DIV when a form is submitted. This dynamically loaded content needs several tooltips to be displayed automatically ...
2
votes
1answer
411 views

Qtip is not working for me?

This is my coding for Qtip.But it wont be work .I dont know why? <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> ...
2
votes
1answer
1k views

Problem with IE and Jquery qTip plugin

I am having problems with the Jquery qtip plugin. It works fine in Firefox (see here http://movieo.no-ip.org/ hover over the first image). But doesn't work in IE. This is the code: ...
2
votes
2answers
3k views

jQuery dynamic qtip shows div, but gets slower and slower with every mouseover

I use jQuery qTip plugin to show divs for a mouseover link/img. I have wrote 2 options to use, but both are causing troubles. V1: the first version shows the tooltip, only the second time I move my ...
2
votes
3answers
3k views

Problem with qTip - Tips not showing because elements load after the script

I'm not very experienced with javascript, jQuery or it's plugins but usually I manage. Anyways, my client is building a site and one of its purposes is to pick up news articles from different sites ...
1
vote
1answer
16 views

Make qTip not disappear when hovering the tooltip

I am using qTip: http://craigsworks.com/projects/qtip2 and my current problem is that when I hover the tooltip it disappears (because the target was mouseleave/mouseout). Is there a way to make it ...
1
vote
2answers
43 views

How do I access the triggering element using QTip?

I have a QTip assigned to an element as follows: $('#myDiv').qtip({ show: { when: { event: 'click', } }, hide: { when: { event: 'unfocus' } }, style: { ...
1
vote
1answer
94 views

Qtip with fullcalendar

I'm trying to learn qtip for fullcalendar but it doesnt seems to work. I´ve tried all tutorials/examples but nothing works as they say. I'm using the following code but I´ve tried many other ...
1
vote
2answers
56 views

Qtip2, hide small tip on tooltip modal?

I've looked everywhere on the qtip site, was not able to find an answer to this. I'm using Qtip2, with the Modal plugin. Anyone know how I can hide the small little "tip" thing from my tool tip? ...
1
vote
0answers
34 views

Manipulating original elements with qTip

I have a bunch of divs on my page and each of them has only the class attribute. In the divs there are some spans, which are set up to display a tooltip with the help of qTip. The tooltip should ...
1
vote
1answer
40 views

Display qTip on input field click and until there is less than 3 chars typed

As described in title I need to display qtip tooltip when click on input field and if there is more than 2 chars typed then hide qtip
1
vote
2answers
118 views

disable jQuery qTip mouse events

How can I keep qTip from automatically showing and hiding the tooltips on mouseenter mouseleave events?
1
vote
1answer
49 views

Qtip on input focus

I want to show Qtip when input get focus. Here is my code: <script> function inputQtip(){ alert("Test"); $('#aerobot[title]').qtip({ position: { my: 'right ...
1
vote
2answers
96 views

Tooltip help Matching

I hoping someone can assist, but I am trying to use qTip2 to display help text when a user hover's over my helpicon3 icon alongside three input text items on my web page. FYI, each item that I have ...
1
vote
1answer
140 views

jQuery qTip not changing classes ?

Hii i am using qTip 2 i want the class ui-tooltip-dark ui-tooltip-shadow but it doesnt shows that class. I have this code: $('.selector').qtip({ content: { text: function(api) { ...
1
vote
1answer
69 views

Qtip-like bubbles in a Java Swing application

I'm looking for something like Qtip (http://craigsworks.com/projects/qtip/) for my Java Swing application.
1
vote
2answers
270 views

Detecting overflow with qTip2

I'm trying to prevent a tooltip from going off the end of a page. I'm using the qTip jQuery plugin, and having some issues. The default positioning is position: absolute; and I need to set it to ...
1
vote
0answers
375 views

Confirm tooltip dialog with qTip2?

So, i'm trying to create a small confirmation dialog (inline, toopltip) when a user clicks a delete button. I imagine it to look kinda like this(http://dribbble.com/shots/171376-Custom-Menu - but ...
1
vote
2answers
339 views

using qTip inside asp.net listview itemtemplate

I am trying to use qTip inside an ASP.NET ListView. The page uses a MasterPage. There is an Image in each Item which will show a DataBound value when hovered. Below is my ItemTemplate code: ...
1
vote
2answers
439 views

How to avoid page scroll when using qtip?

I'm a big fan of qTip, but I was wondering if there was a way to use the modal window without having your page scroll to the top. Have looked around but haven't found anything yet. Is this possible?
1
vote
1answer
318 views

Qtip does not work with fullcalendar after changing the calendar views

I am new here. I've done some googling but cant seem to find the answer to my problem. I'm using qtip with fullcalendar. Everything works fine at first, but every time I changed the views on ...
1
vote
2answers
333 views

Why doesn't qTip tooltip stay open so I can click link on it?

Here is my example in jsfiddle, hover over Minnesota to see the qtip popup. I am using qTip jquery plugin and I am getting stuck on making the qtip stay around long enough for someone to click the ...

1 2 3 4 5