How to detect enter key press on keyboard using jQuery

1365 views 2 years ago jQuery

Use the key code 13 for Enter key

There are certain situations when you want to check whether user has pressed Enter key on keyboard, for example sending form data through Ajax on pressing Enter key, and so on.

To do this, you can simply use the key code 13, which is the ASCII equivalent of Enter key and supported in all major browsers. Let's try out an example to understand how it works:

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Check if Enter Key is Pressed with jQuery</title>
<script src="https://code.jquery.com/jquery-1.12.4.min.js"></script>
<script>
    $(document).on("keypress", function(e){
        if(e.which == 13){
            $("body").append("<p>You've pressed the enter key!</p>");
        }
    });
</script>
</head>
<body>
    <p><strong>Note:</strong> Click on the viewport and press the Enter key on the keyboard. A message will be displayed.</p>
</body>
</html>

Author : Harsukh Makwana
Harsukh Makwana

Hi, My name is Harsukh Makwana. i have been work with many programming language like php, python, javascript, node, react, anguler, etc.. since last 5 year. if you have any issue or want me hire then contact me on [email protected]