Q:

How to detect whether the user has pressed 'Enter key' using jQuery

0

How to detect whether the user has pressed 'Enter key' using jQuery.

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

HTML Code :

<!DOCTYPE html>
<html>
<head>
<script src="https://code.jquery.com/jquery-git.js"></script>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width">
<title>Detect pressing Enter key on keyboard using jQuery.</title>
</head>
<body>
<p>Input a value within the textbox and press Enter</p>
 <form>
 <input type="text" id="hello"></p>
 </form>
 </body>
 </html>

JavaScript Code:

$(document).keypress(function(e) {
    if(e.which == 13) {
        console.log('You pressed enter!');
    }
});

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

Similar questions


need a help?


find thousands of online teachers now