I have the following code. However, the event is triggered when both mouse entering selector and selector is given focus via Tab.
$("selector").mouseenter(function(){
$(this).addClass("red");
})
I would like to an event can be only triggered by mouse, without being able to Tab to it.