Skip to content

Instantly share code, notes, and snippets.

View mcshaz's full-sized avatar

Brent McSharry mcshaz

  • Auckland
View GitHub Profile
@mcshaz
mcshaz / reportValidity.js
Last active April 17, 2020 08:57 — forked from newhope/reportValidity.js
reportValidity polyfill for IE 10, 11
if (!HTMLFormElement.prototype.requestSubmit) {
HTMLFormElement.prototype.requestSubmit = function() {
const submitBtn = document.createElement('input');
submitBtn.type = 'submit';
submitBtn.hidden = true;
this.appendChild(submitBtn);
submitBtn.click();
this.removeChild(submitBtn);
};
}