-
-
Save nuxodin/f7a08176e496d3e25fa6d309d6453168 to your computer and use it in GitHub Desktop.
reportValidity polyfill for IE 10, 11
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
if (!HTMLFormElement.prototype.requestSubmit) { | |
HTMLFormElement.prototype.requestSubmit = function(submitter) { | |
let submitBtn = submitter; | |
if (!submitBtn) { | |
submitBtn = document.createElement('input'); | |
submitBtn.type = 'submit'; | |
submitBtn.hidden = true; | |
this.appendChild(submitBtn); | |
} | |
submitBtn.click(); | |
!submitter && this.removeChild(submitBtn); | |
}; | |
} | |
if (!HTMLFormElement.prototype.reportValidity) { | |
HTMLFormElement.prototype.reportValidity = function() { | |
if (this.checkValidity()){ | |
return true; | |
} | |
if (this.noValidate){ | |
this.noValidate = false; | |
this.requestSubmit(); | |
this.noValidate = true; | |
} else { | |
this.requestSubmit(); | |
} | |
return false; | |
}; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment