Skip to content

Instantly share code, notes, and snippets.

@icodesido
Created December 10, 2013 12:38
Show Gist options
  • Save icodesido/7889958 to your computer and use it in GitHub Desktop.
Save icodesido/7889958 to your computer and use it in GitHub Desktop.
Press the same keystroke twice
var twice_37 = 0;
$(document).on('keydown', function( e ){
var key = e.which;
if(key==37){
twice_37 += 1; // almost :)
if(twice_37==2){
alert('Do something! you pressed twice left!');
}
setTimeout(function(){
twice_37 = 0; // Reset
}, 1000);
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment