Common HTML Keycodes

Here are commonly used key codes. When we want to submit a form, users are expecting to press enter as to press sumbit button
window.onkeydown = function(){
if(event.keyCode == 13){
	alert('submitted')
}

Here are some common keycodes

Key Code
enter 13
esc 27
space 32

Here you can look up keycode

Comments

Popular posts from this blog

How to Make A Reusable Image Slideshow HTML Component With Vanilla JavaScript

HTML Tags and Inline CSS that Work In Plotly.js Title

How to Type Spaces In HTML Input And Display In the Browser