Post Reply 
 
Thread Rating:
  • 0 Votes - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
How to qtip over img that is on a JQuery popup?
27th January, 19:19
Post: #1
How to qtip over img that is on a JQuery popup?
I've got a JQuery popup window that has lightbox effect - dims the background and a DIV section pops up with fields on it.

Trying to present a qtip against a field on the popup. Trouble is: the qtip shows up beneath the popup in the darkened area...?

How to target qtip to display on the popup itself?

Code fragments:

Base HTML:
$(document).ready(function(){

$(".CSPop").click(function(){
$.ajax({
type: "POST",
url: "AJAX-child.php",
complete: function(data){
$("#Content").html(data.responseText);
}
});
center();
load();
}};

=> So the popup AJAX-child.php loads up with the following code:

<script type="text/javascript">

$(document).ready(function(){

$('img.mone').qtip({
content: 'My content goes here',
style: 'dark'
});

});
</script>

<img class="mone" src="images/Information_icon.gif"/>

=> the qtip actually shows up - just that it is underneath the present popup.......How do I get the qtip to display on the JQuery popup itself?

Any and all help appreciated! Thanks!
Find all posts by this user
Quote this message in a reply
29th January, 22:20
Post: #2
How to qtip over img that is on a JQuery popup?
arthur71, you need to make sure the overlay itself has a z-index of that lower than 6000, as this is where all the z-index values of tooltips start.

Craig Thompson
Web Developer / Designer
Craigsworks
http://www.craigsworks.com
Visit this user's website Find all posts by this user
Quote this message in a reply
Post Reply 


Possibly Related Threads...
Thread: Author Replies: Views: Last Post
  Open a modal popup window from a click inside qtip poojakudesia 1 1,133 10th August 19:32
Last Post: Craig
  [Solved] qTip and jQuery Validation QandnotU 2 3,188 17th November 10:55
Last Post: Paté
  qTip 1.0.0-rc3 & jQuery 1.4 Yeti 5 8,277 25th August 10:54
Last Post: interpotential
  qTip pointer does not works in the latest jQuery plugin 1.4.1 babupca 1 2,275 11th February 14:17
Last Post: Craig
  qTip fixed and always visible inside img caesar2k 2 2,677 14th May 14:51
Last Post: caesar2k
  qTips with jQuery UI CSS and ThemeRoller dfeeney 3 3,280 5th May 12:24
Last Post: tipolosco
  jQuery: Performance analysis of selectors bellzebu 0 1,730 20th April 13:51
Last Post: bellzebu



User(s) browsing this thread: 1 Guest(s)