Post Reply 
 
Thread Rating:
  • 0 Votes - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
Qtip not showing 100% or not at all
22nd July, 06:27
Post: #1
Qtip not showing 100% or not at all
Hi,
I just started using qtip, so bare with me if I am making rudimentary mistakes in the code. I am displaying tooltis on <a> tags here http://www.lamedaskincare.se/index_new.php but after a while of rolling over the links the tips are not showing or they are showng at maybe 10% transparency. sometimes the tips are overlapping eachother een though i have set the solo setting to true... here is my javascript

JS Code
$('a.tip').each(function(){
		//e.preventDefault();
		var pid = $(this).attr('id');
		$(this).qtip(
      {
         content: {
            // Set the text to an image HTML string with the correct src URL to the loading image you want to use
            text: '<img class="throbber" src="new_img/working.gif" alt="Loading..." />',
            url: 'ajax/tooltip.php', // Use the rel attribute of each element for the url to load
            data: { id: pid },
            title: {
               text: 'Produkt - ' + pid, // Give the tooltip a title using each elements text
               button: 'Stäng ruta' // Show a close link in the title
            }
         },
         position: {
            corner: {
               target: 'rightMiddle', // Position the tooltip above the link
               tooltip: 'leftMiddle'
            },
            adjust: {
               screen: true // Keep the tooltip on-screen at all times
            }
         },
         show: { 
            when: 'mouseover', 
            solo: true // Only show one tooltip at a time
         },
         hide: 'unfocus',
         style: {
            tip: true, // Apply a speech bubble tip to the tooltip at the designated tooltip corner
            border: {
               width: 0,
               radius: 4
            },
            name: 'light', // Use the default light style
            width: 450 // Set the tooltip width
         }
      })


Appreciate any help... thanks
Find all posts by this user
Quote this message in a reply
Post Reply 


Possibly Related Threads...
Thread: Author Replies: Views: Last Post
  [Solved] Multi tips not 100% times work dmhorse 1 96 9th January 18:19
Last Post: Craig
  [Solved] Browser still showing regular tooltip in addition to qTip Ryan Williams 2 652 18th December 19:54
Last Post: Craig
  [Solved] Dynamic content not showing? dabd 3 552 21st August 18:17
Last Post: Craig
  Qtip works but not always [stuck tooltip and sometimes not showing] bittyme 5 551 15th August 00:14
Last Post: bittyme
  [Solved] Tip corner not showing in IE7 and IE8 danlefebvre 9 2,844 3rd June 08:17
Last Post: amitshahc
  qTips no showing in IE7 adrielcrv 3 947 9th May 14:06
Last Post: Craig
  qTip text showing on Firefox bloomkey 3 1,042 5th March 03:07
Last Post: Aigw3v75d3Z
  [Solved] qtip not showing in IE7 WillMan 2 1,001 17th February 14:23
Last Post: WillMan
  [Solved] Swap between showing qTip as a tooltip and as a modal window Surya 3 1,010 16th February 20:53
Last Post: Craig
  [Solved] IE not showing full width of tip, Firefox is ok Shad 3 1,462 24th December 02:16
Last Post: Shad



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