Skip to content

Instantly share code, notes, and snippets.

@votemike
Created July 3, 2020 11:14
Show Gist options
  • Save votemike/e7b90c06b532250ddd2c7b34ed536c57 to your computer and use it in GitHub Desktop.
Save votemike/e7b90c06b532250ddd2c7b34ed536c57 to your computer and use it in GitHub Desktop.
Fill in all empty inputs with their placeholder
var inputs = document.getElementsByTagName('input');
for (index = 0; index < inputs.length; ++index) {
if (!inputs[index].value) {
inputs[index].value = inputs[index].getAttribute("placeholder");
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment