It possible to check if the cursor is hovering on an element.
Something like
$(\"#divId\").is(\"hover\");
NOTE: I just want to check n
Depending on what you are doing either mouseover() (http://api.jquery.com/mouseover/) or hover() (http://api.jquery.com/hover/) can be useful.
mouseover()
hover()