jonnyplow on "disable link for drop down"
February 23, 2010 by David Olsen
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>





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!