Skip to content

Latest commit

 

History

History
10 lines (8 loc) · 295 Bytes

File metadata and controls

10 lines (8 loc) · 295 Bytes

User Event By Name

This allows you to access keyboard events by their human name rather than keyCode.

window.onkeydown = function (e) {
	UserEventByName(e,"space,up,down"); // will return true if space, up, or down are pressed, false for everything else.
}