Is there a quick & easy way to do this in jQuery that I\'m missing?
I don\'t want to use the mouseover event because I\'m already using it for something else. I
A clean and elegant hover check:
if ($('#element:hover').length != 0) { // do something ;) }