Top

jonnyplow on "disable link for drop down"

February 23, 2010 by  

jho1086, in addition to yours, which works great, I added the following below to only disable the second parent in the menu. thanks for yours!

<script type="text/javascript">
var $j = jQuery.noConflict();
$j(document).ready(function () {
$j("ul li ul li:has(ul)").hover(function () {
$j(this).children("a").click(function () {
return false;
});
});
});
</script>
Share

Comments

Facebook comments:

Feel free to leave a comment...
and oh, if you want a pic to show with your comment, go get a gravatar!





*
Bottom