[jQuery] jQuery.dequeue is not a function
In a web application I am working on there is a menu that slides down
when you mouseover something and slides back up when you mouseout
again. If you did this too quickly the result would be that the
animation would bounce up and down quite comically with no way to stop
it other than waiting for the jQuery animation queue to empty
itself.
With jQuery 1.2 it seemed like a solution to this problem was
available, because you can now stop animations. I tried adding stop()
calls into the code in the belief that aborting the currently
animation before startign a new one would solve my problems.
However, I just got the error message jQuery.dequeue is not a function
http://localhost/js/jquery/interface/interface_drag.js
Line 8
interface_drag.js is basically a barebones version of the jQuery
interface library with just the bare nimimum needed for draggables
built into it.