I have a drop down menu <UL>, with many menu items <LI>, some of which items are parents("daddy") of a sub-menu.
I have a callback function that looks like this:
mouseenterCallback: function(evt) {
var $thisLI = evt.target;
if ($thisLI.hasClass("daddy")) {
alert("daddy");
}
}
In this test, the alert only shows when the mouse enters the main menu title ... but not for each and every <LI>
How can I make the former and the latter happen?
/signed/ bewildered