|
Re: Form validation help!
OK, ignore both of my previous posts.
I've just realised you've got it working...
the problem is that you have this:
onsubmit="validateMe(this);"
...when you should have...
onsubmit="return validateMe(this);"
...case closed.
|