Skip to content

Instantly share code, notes, and snippets.

@v2keener
Last active December 17, 2015 23:39
Show Gist options
  • Select an option

  • Save v2keener/5690856 to your computer and use it in GitHub Desktop.

Select an option

Save v2keener/5690856 to your computer and use it in GitHub Desktop.
(function(){ // self-executing function
var id;
$('selectSomethingHere').hover(function () {
id = window.setTimeout("doTheSnapShotCrap();", 10000);
}, function () {
window.clearTimeout(id);
});
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment