qtip

Customizing jQuery validate to pop-up error message over an icon

Hello! This might be a fundamental jQuery misunderstanding but I've got to ask... I'm trying to get the jQuery.validate to display its error messages on qTip, a jQuery plugin for customizing tooltips. Specifically I want to get the tooltip to pop-up on mouseover of a little red "X" icon. I can get the tooltip to popup over the form f...

jquery - get an html attribute from within a function call

Hi, 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: "http://mydomain.com/product/mini/" + $(this).attr("id") // doesn't work }, hide: { when: 'mouseout', fixed: true }, positi...

Dynamic content loads into jQuery qtip in all browsers except IE

Hi all! qTip...a jQuery custom tooltip plugin... isn't loading dynamic content for IE8 (haven't tested in IE6/7). qTip initializes but no content (text) loads into it. Here is my code: errorPlacement: function(error, element) { var errorcontent=eval(error); element.parents('.rightfields').find('.nore...

qtip jquery plugin to display text from link

I am trying to use the jQuery qTip plugin to display the text inside the element. I have multiple links in a table like so with different classes. The text in the links is hidden with a negative text indent and a background sprite is used to make them look unique. <a href="#" class="spot_quote">Spot quote</a> <a href="#" class="cont...

jquery qtip plugin

Hi, I am using the jQuery qTip plugin and am having trouble loading html content into it from another element. I have the following code: $('.tip').qtip({ content: { text: $(this).next('.product_info').html() } }); with the following html: <a href="#" class="tip">An Image</a> <div class="product_info">Some conten...

qTip Tooltip Issue

I am trying to use tabs on my page and each tab is loaded through the .load() javascript function. When I click on the first tab, I have the qTip tooltip provide a tooltip over each cell in a column of the table that is created. The tooltip works perfectly here. When I click on the second tab, the same thing happens to the table that is ...

mvc2, query and qtip issue

Hello, I'm having an issue where in my controller, I'm setting values in a collection and storing them in ViewData. eg: ViewData["ex1"] = new SelectList(ex1); // a simple collection ViewData["ex2"] = new SelectList(group.Members, "Id", "Gender"); I'm passing these to my View and looping through like this. eg: <div id="divListBox" s...

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> <div class='test'>Test 2</div> <div class='tooltip'>Tooltip 2</div> <div class='test'>Test 4</div> <div class='tooltip'>Tooltip 4</div> and the following javascr...

can i call qTip on mouseover in jquery (or any other effience way to call qTip)

I have this code below which works fine but seems unnecessary as it loops through all div.test even if i never mouse over them. I tried putting the .qTip() function inside the mouseover event to be more efficient but that doesn't seem to work. Any suggestions on how to make the below code more efficient? <script type="text/javascript"...

qtip jquery, Ghosts" Artefacts of Tooltip in DOM, how remove

I am using the qtip plugin in the jquery fullcalendar (on doubleclick on a event). I create a modal tooltip window in my page. In this tooltip window i am loading some ajax content and calling some functions (links with binded events, example deleting the event on the calendar), but this is not the problem i think. If i open the toolt...

How to create fixed/absolute position Tooltips on iPhones and iPads?

For some time now I've been happily using the qTip jQuery plugin. No complaints there. However, on iPads and iPhones, the tooltips appears to be buggy. Symptoms: Before resizing the touch screen everything seems to be working fine. After resizing etc. -- Inconsistent behavior. Some tooltips are misplaced; no real logic there. Diagno...

jQuery qTip - link to a hidden div from inside a tooltip

I am trying to place a link inside a tooltip (qTip) that when clicked shows the content of a hidden div inside a lightbox (nyroModal). Regular anchor tag not in a tooltip links to the div opening content in a lightbox successfully. Code: http://jsbin.com/omafe/2/ Might need to copy code to notepad, save as html and open the file. (jsbi...

Loading jQuery qTip code dynamically

Hello everyone, 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 at the time of loading (no need for an event to trigger it). I chose qTip because it has parameters to do this, unlike mos...

jQuery qtip() - how to get the id from the clicked item

Hi everyone, I have the jQuery qtip() function in my asp.net page and I need to get the id from the clicked item. Does anyone know how to do it? As an example, please find below my script code... $("#content a.toolTip").qtip({   content: { url: 'PageView.aspx?Param=' + '---get id---' } )}; Thanks in advance. []'rpg ...

FullCalendar and qTip. Help with description as array

I have problem with load description. I'm getting answer via ajax this is JSON part information: {"id":"","start":1282561200,"end":1282564800,"title":"admin admin","description":[["Alcatel-6850, ","Alcatel-6400, "]]} This is code to rendering event: eventRender: function(event, element) { element.qtip({ content : ...

qTip mouseover like gMail contacts

Hello, I am fairly new to qTip and so far things look awesome for implementing. I am trying to setup my contacts to have a mouseover like gmail has when you mouse over a contact is shows their picture and specific actions. I currently have the code loading dynamically with the position target set to mouse, and have the hide set to fix...

I can't setup qTip in admin/settings. Module is enabled.

Hi, I downloaded qTip module from Drupal site and extract it to sites/all/modules. I downloaded project from http://craigsworks.com/projects/qtip/download/ and extract it like README.txt file says ... to sites/all/libraries/qtip ... so I have in folder qtip these files *jquery.qtip-1.0.0-rc3.min.js *jquery-1.3.2.min.js *REQUIREMENTS ...

How Can i optimize qTip?

Hey everyone! i've been doing some profiling on an app i'm working on and qTip is really slowing it down! I love this plugin but adding the tips on document ready is taking almost 2 whole seconds (about 300 tips on the page). I know it's a lot of tips, but is there anyway obvious or not so obvious ways to speed this up? i'm using th...

jQuery qtip - loading an image into the qtip via ajax

I'm using the jQuery qtip plugin. I want the content of the qtip to be an image, loaded dynamically. The url I'm using works. If I go to the url, I see an image. However, the qtip shows something... weird. Here is the result: Any ideas why this would happen? Edit This is the entire Response Header (via Chrome inspector): Acce...

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 doesn't work ... <head> <script type="text/javascript" src="javascript/jquery-1.4.2.js" ></script> <script type="text/javascript" src=...