Click to get Flash Player
Get Adobe Flash player

or try to enable JavaScript and reload the page

Wednesday 5 September 2012

Detect pressed key with jquery

$(document).keypress(function(e) {
    if(e.which == 13) {      //13 is stand for Enter key
        alert('You pressed enter!');
    }
});

No comments:

Post a Comment

thnx