Skip to content

Instantly share code, notes, and snippets.

@igoralves1
Created April 20, 2016 20:21
Show Gist options
  • Save igoralves1/dadd9280346b04883996676882500baa to your computer and use it in GitHub Desktop.
Save igoralves1/dadd9280346b04883996676882500baa to your computer and use it in GitHub Desktop.
JS - timer
$(function() {
timeout = setTimeout(function() {
window.location.href = "http://google.com";
}, 2500);//waiting 2,5s
});
$(document).on('mousemove', function() {
if (timeout !== null) {
clearTimeout(timeout);
}
timeout = setTimeout(function() {
window.location.href = "http://mysite.com";
}, 2500);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment