I had the thought:
What's stopping someone from circumventing form validation by deleting the "onSubmit" of an HTML form using something like Firebug?
I know Javascript isn't meant to be the only form of validation, but how can I ensure the Javascript validation isn't circumvented in this way?
I would prefer to continue using the "onSubmit" method if possible, as that is already in place, but am open to other options.
I should make it clear, I do have server side validation in place. I just want to make removing the JS validation as difficult as possible.