JQuery Validation and HTML 5

0 comments

As Html 5 comes online more some of the older jquery valiation may not appear to work (first noticed in chrome). This is because HTML5 validation overrides JQuery Validation. To fix this add the following tag in the $(document).ready function to disable the default HTML5 validate..

 

$("#form").attr('novalidate''novalidate');


Comments


Leave a Comment