Thursday, April 5, 2012

Attach an action on "Enter" key press

document.onkeypress = onKeyPressAction;


function onKeyPressAction() {
        if (event.keyCode == 13) {
            search();
            return false;
        }
}

function search() {
    // do something
}

Labels:

0 Comments:

Post a Comment

Subscribe to Post Comments [Atom]

<< Home