How would I go about using JavaScript on my web page page to call a function anytime there is a keyup
event globally, so it isn't attached to textbox. I need it to work for every key on the keyboard. I am very new to JavaScript and having a lot of trouble interpreting the documentation
How would I go about using JavaScript on my web page page to call a function anytime there is a keyup
event globally, so it isn't attached to textbox. I need it to work for every key on the keyboard. I am very new to JavaScript and having a lot of trouble interpreting the documentation
jQuery
$(document).keyup(function() {});
Javascript
document.onkeyup = function(event) {}