We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cf58acc commit 2bbb43aCopy full SHA for 2bbb43a
web.md
@@ -0,0 +1,6 @@
1
+# Loop through elements, add an attribute
2
+```js
3
+[].forEach.call(document.querySelectorAll('input'), function(input) {
4
+ input.setAttribute("spellcheck", "false")
5
+});
6
+```
0 commit comments