
July 1st, 2009, 10:23 AM
|
|
|
|
JavaScript - Image flicker onmouseover/mouseout
I have some nested divs with a grid inside of them and I'm changing the background image of a div tag and a P tag when mousing over and out by calling two independent javascript functions to toggle the background images. I'm running into the notorious flicker effect when mousing over. Using css the hover works fine I just cant change two different tags at the same time, so I'm resorting to javascript here.
Anyone know how to fix this issue (IE7)?
<div class="QQstyle" onmouseout="GlowOut()">
<div id="QQinnerCallRpt" onmouseover="GlowIn()" class="QQinner">
<p id="btmP" class="Hybrid">Termination</p>
<br />
<div class="overFlowStyle">
<telerik:RadGrid ID="GridName" runat="server">
</telerik:RadGrid>
</div>
</div>
</div>
|