Skip to content

Instantly share code, notes, and snippets.

@sirbrad
Created February 17, 2012 16:46
Show Gist options
  • Save sirbrad/1854308 to your computer and use it in GitHub Desktop.
Save sirbrad/1854308 to your computer and use it in GitHub Desktop.
Quickly populating inputs for testing purposes
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