Originally posted by Stobie
I will need to put in form validation that if it sees anything other an integer then don't allow submit.
You can use the pattern attribute in HTML5.
<input type="text" pattern="\d+"> probably works
I will need to put in form validation that if it sees anything other an integer then don't allow submit.
You can use the pattern attribute in HTML5.
<input type="text" pattern="\d+"> probably works






























