How can one restrict an inputbox to just use numbers only.
So if a user were to type in anything from a-z, it will not work in the inputbox.
To some this may seem easy but to me, it sounds like rocket science.
no jQuery please.
<!DOCTYPE html>
<html>
<head>
</head>
<body>
<input type="text" id="numbersonly" />
</body>
</html>