Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

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.

share|improve this question
show some code to get us started – Rene Pot Mar 22 '12 at 10:53
Normally while re sizing window the width of the tooltip not increased. – Chandru velan Mar 22 '12 at 13:43

1 Answer

up vote 0 down vote accepted

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>
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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