Skip to content

Latest commit

 

History

History
6 lines (6 loc) · 169 Bytes

web.md

File metadata and controls

6 lines (6 loc) · 169 Bytes

Loop through elements, add an attribute

[].forEach.call(document.querySelectorAll('input'), function(input) {
 input.setAttribute("spellcheck", "false")
});