-  Creating and Sharing the Top jQuery Plugins.

WEBSANOVA PLUGINS

wTooltip
wColorPicker
wPaint
wScratchPad
wHumanMsg
wJSNova
Mousestop
Boilerplate
jQuery Selectors Lib
JQuery Utils Lib
Blocknik

FIND A PLUGIN

slideshows
lightboxes
tooltips
color pickers
star ratings
select boxes

CAN'T FIND A PLUGIN

contact us

Websanova mousestop

Websanova jQuery Mousestop PluginA jQuery plugin that detects a mouse stop event over a given element. A mouse stop is indicated by a period of time over which the mouse does not move, the default is 300 milliseconds. It also supports a "timeToStop" option allowing a "grace" period of time for the event to trigger.
Usage:
options •
$("#container").mousestop(function, [options]);
Options:
timeToStop •
Time user has from mouseover even to trigger the onStop. If this time elapses nothing happens on stop.
$("#container").mousestop(function(){//do something}, {timeToStop: 2000});
default: null
 values: null or <integer>
delayToStop •
This is how long the mouse has to go without movement to be considered a stop.
$("#container").mousestop(function(){//do something}, {delayToStop: "300"});
default: 300
 values: <integer>
onMouseout •
Function to call when mouse leaves the element.
$("#container").mousestop(function(){//do something}, {onMouseout: function(e){}});
default: null
 values: function(){}
onStopMove •
Function to call when the stop is triggered and the mouse moves again.
$("#container").mousestop(function(){//do something}, {onStopMove: function(e){}});
default: null
 values: function(){}