-1

i'm using tipsy.js for my applications, when i hover the content it shows tooltips but its flickers or jumps often in FF and IE where as in Chrome the it not happening plz some one help me to figure out this issue .

<div id="div142" class="CheckBox3Img" runat="server" title=" Store xxx try to give more " visible="false" style="height: 19px; margin-top: 8px; cursor: pointer;">
                            <a id="lnkStore" runat="server" style="float: left; height: 18px; width: 24px;" title=" Website Store"
                                class="imgwebDev">
                                <img src="../../App_Themes/Main/_images/DollarImg.jpg" />
                            </a>
</div>

JavaScript:

$(.CheckBox3Img).tipsy({gravity:s});

Note: this works in normal maximized window since i'm supporting other devices ipad and the width of the window is small at that time when tool tips width has not sufficient space to show the full text its started to blink or jumps. Resize the window to small and make sure the tooltip element at the corner of the window.

jb10210
  • 1,158
  • 5
  • 15
Chandru velan
  • 136
  • 1
  • 3
  • 21

3 Answers3

0

If your issue is that tipsy constantly flickers when the pointer is on the edge of the element on which you've set the tooltip, then add this css:

.tipsyS {
  pointer-events: none;
}

It will get you out of the hide-show loop, its a hack but it hasn't broken anything for me so far.

Achyut Rastogi
  • 1,335
  • 2
  • 11
  • 15
0

I fixed my issue by adding this style to the tooltip class :

   .tooltip {
        pointer-events: none;
    }
d.popov
  • 4,175
  • 1
  • 36
  • 47
0

thanks guys i solved the problem by adding &nbsp where ever i need a space that is it.

<div id="div142" class="CheckBox3Img" runat="server" title="Store&nbsp;xxx&nbsp;try&nbsp;to give&nbsp;more&nbsp; " visible="false" style="height: 19px; margin-top: 8px; cursor: pointer;">
                            <a id="lnkStore" runat="server" style="float: left; height: 18px; width: 24px;" title=" Website Store"
                                class="imgwebDev">
                                <img src="../../App_Themes/Main/_images/DollarImg.jpg" />
                            </a>
</div>
Chandru velan
  • 136
  • 1
  • 3
  • 21