Skip to content

Instantly share code, notes, and snippets.

@avireni
avireni / jquery.snippets.js
Created April 17, 2012 00:05 — forked from eapen/jquery.snippets.js
Jquery + JS snippets
Check if and which key was pressed
$(function() {
$(document).keypress(function(e){
switch(e.which){
// "ENTER"
case 13:
alert('enter pressed');
break;
// "s"