Reputation: 970
I'm working on this website:
http://aimmgm.goexpo.mx/index.php/registro/generales
That's basically a form and what I'm trying to do is to validate it using a jquery plug in. It works just fine in Chrome and Firefox. But IE seems to have troubles with it since it doesn't validate the fields.
So, any hint of what could be wrong?
Thanks in advance.
Upvotes: 3
Views: 451
Reputation: 970
Sorry guys. I was using and old version of JQuery Validate. I updated it to the latest version and it works perfectly. Sorry for the question. Thanks anyway
Upvotes: 0
Reputation: 8552
$('#formId').submit(function(){
if(!$(this).valid()){
return false;
}
});
Upvotes: 1