Domanda

I'm wondering if I could do something to disable HTML5 validation for every form in my application.

Is there any way to do this or I just should add novalidate attribute for each form tag?

È stato utile?

Soluzione

It seems the only way is to add novalidate attribute to each form using javascript/jquery, like this:

$(document).ready(function() {
    $("form").attr('novalidate', 'novalidate');
});
Autorizzato sotto: CC-BY-SA insieme a attribuzione
Non affiliato a StackOverflow
scroll top