:P never used these methods before.
Am I reading this right?
Bind(on) variable anime to .box
Inside Anime --> $(".box").not(theBox).off(anime)
Is this saying, remove the hovered ID and unbind Anime from it?
It's the .not() I think I don't understand. Does this method grab/isolate the highlighted element so you can adjust it appropriately with another method? As such turning the variable Anime on/off(bind/unbind)?
Or is this happening? You bind the variable anime to the entire class of .box. Once initiated, the variable is removed from all elements except for the one highlighted with the mouseenter?
Once the mouseleave is completed, the variable is re-applied to all the other elements in the box class?
http://jsfiddle.net/Ewg5T/13/ Sorta works a bit smoother.Allows for multiple events to be fired, but doesn't really queue as much. It still queues slightly, and isn't crystal smooth though. But it's something atm.
I'll have to play with this more. I wonder if there is a way to access or view the events that are fired in the browser and somehow manipulate them from there. I'll have to take a deeper look into it. Thanks man, that's really helpful. I finally see how to bind/unbind variables/functions.