jquery-delayedmousemove icon indicating copy to clipboard operation
jquery-delayedmousemove copied to clipboard

TypeError: 'undefined' is not a constructor

Open Instrumentry opened this issue 14 years ago • 0 comments

I'm getting the above error in console that fires at the rate of mousemove.

Here's what my code looks like:

$('#element').bind('mousemove', {
    behavior: 'throttle',
    delay: 200
}, someFunction);
$('#element').bind('mousestop', 1000, anotherFunction);

The intended behavior works though.

Instrumentry avatar Dec 20 '11 06:12 Instrumentry