문제

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?

도움이 되었습니까?

해결책

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');
});
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top