Thursday 7 August 2014

Browser capture key events & key codes

$(document).keypress(function(e) {
    if (e.which == "13") { 
        //enter pressed 
    }       
});

No comments:

Post a Comment