Let's say I have a select box
<select id="cartoons'>
<option>Pogo</option>
<option>Cartoon network</option>
</select>
I'm trying to add a mouseenter event to the second option like this
$("#cartoons").children().last().on("mouseenter", function () {
alert("Hello world");
});
But it's not working. Fiddle here.