Hey I have a button and when its pressed I have it so that a div slides down. The code works both in FF and IE but in IE as the div is sliding down it does sort of like a jumpy or flickry effect? Dont really know how to describe it. Here is my code:
Code JavaScript:$(document).ready(function(){ $("#toolsToggle").toggle( function(){ $("#subNavigation").slideDown("fast"); }, function(){ $("#subNavigation").slideUp("fast"); } ); });
and the div:
Does anyone see anything wrong there that may cause this? Thanks.HTML Code:<div id="subNavigation" style="display:none;"> <table width="1000" height="27" border="0" cellpadding="0" cellspacing="0" align="center"> <tr> <td background="images/templateHeader_12.gif" width="1000" align="right" style="padding-right:30px;"> <a href="userAdmin.php" style="color:white;"><b>User Admin</b></a> <font color="white"><b>|</b></font> <a href="tools.php" style="color:white;"><b>Tools</b></a> </td> </tr> </table> </div>





Bookmarks