I have a text field that allows a user to enter their age. I am trying to do some client-side validation on this field with JavaScript. I have server-side validation already
Nobody tried this simple thing?
function isInt(value) { return value == parseInt(value, 10); }
What's wrong with that?