Rick, My source code actually using tables for the navigation and my project requirements force me to continue using tables. I assigned a height to the table but that did not seem to help.
I'm continuing to have the flicker effect in IE 6/7. On Apr 3, 3:48 pm, brwalias <[EMAIL PROTECTED]> wrote: > i will give that a shot. thanks! > > On Apr 3, 1:48 pm, "Rick Faircloth" <[EMAIL PROTECTED]> wrote: > > > Don't know if this will help your situation or not, but I had some > > flickering problem with a simple slide toggle, which sounds similar > > to what you're describing. > > > The solution was to set a min-height for the container of the div's. > > > Give height declaration a try and see if that helps. > > > Rick > > > > -----Original Message----- > > > From: jquery-en@googlegroups.com [mailto:[EMAIL PROTECTED] On Behalf > > > Ofbrwalias > > > Sent: Thursday, April 03, 2008 3:32 PM > > > To: jQuery (English) > > > Subject: [jQuery] flickering side effect in IE 7 > > > > I am experiencing flickering side effect in IE 7 when running this > > > pretty simple show/hide div script. i'm hovering over an element and > > > moving the mouse into the div that expands during the show state. The > > > flicker side effect is noticed when the mouse moves from the navTabId > > > to the dropDownId div. There is a 1/2 second point where the > > > dropDownId div just disappears and reappears. > > > > here is my script: > > > > $(document).ready(function() { > > > var dropDownId = "#gssMenuRMAdminDropDown"; > > > var navTabId = "#zz1_TopNavigationMenun6"; > > > //happens on mouseover or click > > > $(navTabId).mouseover(function(){ $(dropDownId).show(); return > > > false; }); > > > $(navTabId).mouseout(function(){ $(dropDownId)..hide(); }); > > > $(dropDownId).mouseover(function(){ $(dropDownId).show(); return > > > false;}); > > > $(dropDownId).mouseout(function(){ $(dropDownId).hide();}); > > > }); > > > > I'm interested to know if anyone can duplicate the same problem and > > > help me fix this. > > > > Thanks in advance. > > > > b