Created
February 17, 2012 16:46
-
-
Save sirbrad/1854308 to your computer and use it in GitHub Desktop.
Quickly populating inputs for testing purposes
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
var inp = document.getElementsByTagName('input'), len = inp.length; | |
while (len--) { | |
inp[len].value = 'test'; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment