JQuery validate not working with IE

I am working on this site:

http://aimmgm.goexpo.mx/index.php/registro/generales

Basically the form and what I'm trying to do is check it out using the built-in jquery. It works great in Chrome and Firefox. But IE seems to have problems with it as it does not check the fields.

So, any hint of what might be wrong?

Thanks in advance.

+3
source share
2 answers

Sorry guys. I used the old version of jQuery Validate. I updated it to the latest version and it works great. Sorry for the question. Thank you anyway

0
source
$('#formId').submit(function(){
    if(!$(this).valid()){
       return false;
    }
});
+1
source

All Articles