$("#testing").qtip({
   content: 'Presets, presets and more presets. Let\'s spice it up a little with our own style!',
   style: {
      width: 200,
      padding: 5,
      background: '#A2D959',
      color: 'black',
      textAlign: 'center',
      border: {
         width: 7,
         radius: 5,
         color: '#A2D959'
      },
      tip: 'topLeft',
      name: 'dark' // Inherit the rest of the attributes from the preset dark style
   }
});

HTML:

<font id="testing">Test</font>

Above codes works fine in all browser except ie6 and ie7

IE6 & IE7: Tool tip point is not displayed [i had mentioned as tip:'topLeft' but tip not appears in ie6 and ie7]

Thanks in advance...

link|improve this question

May I ask why you use $("#testing") to address the tag in dom? Isn't $("testing") correct? – YvesR Jan 19 '11 at 7:00
@YvesR this is basic jQuery! api.jquery.com/category/selectors – ArtWorkAD Jan 19 '11 at 7:13
feedback

1 Answer

up vote 1 down vote accepted

Does not work for me very good too on IE6 & IE7, http://www.jsfiddle.net/G4gU6/.

Actually for me it is just the css which seems to be misunderstood by the IE6 & IE7. You could try to fix it by applying your own css or rewrite the qTip2 css.

For more professional help on that refere to qTip2 Forum. Craig will help you ;)

a bit of search on google ;)

link|improve this answer
still ie6 wont displays tip point. I used your sample codes it doesnt played in ie6. tip didnt appeared – Mohan Ram Jan 19 '11 at 7:20
qTip2 definitely works on both IE6&7. what version of jQuery are u using? – ArtWorkAD Jan 19 '11 at 7:40
while using qtip2 in my framework. ie6 hangs while using qtip2. qtip2 consumes lot of cache memory. I had changed to use jquery plugin tipsy for tooltip. Thanks. – Mohan Ram Jan 20 '11 at 3:32
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.