Home › Forums › CSS › [Solved] Validating WordPress dropdown › Re: [Solved] Validating WordPress dropdown
September 10, 2009 at 10:53 am
#63709
Member
Code:
>
” rel=”stylesheet” type=”text/css” />
$(document).ready(function () {
$("li:has(ul)").hover(function () { $(this).children("a").click(function () { return false; }); });
});
You could post it as in the above example, after
Code:
wp_head();
and before the
Code:
tag.
I’ll work on disabling only those links. May take a bit as I am new to jQuery