kaos32black
New Member
Show / hide does not work IE7. In the other browsers work fine.Help me please.Am I doing something wrong?\[code\]<div id="secondary_nav" class="box"> <ul> <li><a href="">test</a></li> <ul class="sub-menu" style="height: 336px; display: none;"> <li><a href="">test</a></li> </ul> </ul> </div> <script type="text/javascript">$(document).ready(function() { $("#secondary_nav ul li").hover(function() { $(this).next(".sub-menu").show(); $(this).next(".sub-menu").hover(function() { $(this).show(); }, function() {$(this).hide();} ); },function() {$(this).next(".sub-menu").hide();} );}); </script>\[/code\]