Last active
November 8, 2016 03:36
-
-
Save Glavin001/6a1255ae1e548f10ad5be61c8ee1bdb8 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
var $els = document.querySelectorAll("input[type=\"radio\"]"); | |
for (var i of $els) { | |
i.checked = true; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment