<script type='text/javascript'> jQuery(document).ready(function() { jQuery(\"#dropmenu ul\").css({display: \"none\"}); jQuery(\"#dropmenu li\").hover(function(){ jQuery(this).find('ul:first').css({visibility: \"visible\",display: \"none\"}).show(268); },function(){ jQuery(this).find('ul:first').css({visibility: \"hidden\"}); });});</script>
What I need is: when someone clicks on submenu that element would be stay displayed under parent element.... Any suggestions would be appreciated, I did google it, can't find anything... Thanks.