What is the most neatest way to check whether a user is hovering over an object after hovering out of a different object. I.e. If user mouses out of object A onto object B, how would you suggest I go about monitoring this? I don’t really like the idea of continously monitoring the mouses position when it moves, though it may be the only option…
Share
check out this fiddle
http://jsfiddle.net/aVz7Q/4/
A simple hover event in jQuery can accomplish this, with the help of some variable work, you can store what the previous element and current element are.