Answers for "detect key press input"

3

jquery on enter key pressed

//jQuery detect user pressing enter
$(document).on('keypress',function(e) {
    if(e.which == 13) {
        alert('User pressed Enter!');
    }
});
Posted by: Guest on July-31-2019
2

if keypress javascript

// Create your variable and asssign it to your ID or Class in the document using document.querySelector.
let name = document.querySelector('#exampleInputEmail1');

// Now use your variable and add an event listener to it plus your keypress, event and styling
name.addEventListener("keypress", (event) => {
   name.style.border = "3px solid #28a745";
});
Posted by: Guest on December-12-2020

Code answers related to "detect key press input"

Code answers related to "Javascript"

Browse Popular Code Answers by Language