How to allow numbers, backspace, delete, left and right arrow keys in the html text?
No doubt your code is correct but you missed "return" keyword in textbox.
<input type="text" onkeypress='return validateQty(event);'>
You can see the code here