Skip to content

Instantly share code, notes, and snippets.

@rewmike
Last active July 28, 2016 14:39
Show Gist options
  • Save rewmike/7536c4713899aa5ece61ad8168a85f6e to your computer and use it in GitHub Desktop.
Save rewmike/7536c4713899aa5ece61ad8168a85f6e to your computer and use it in GitHub Desktop.
Alert all the inputs
(() => {
const selector = 'input,textarea';
const excluded = ['checkbox', 'radio', 'hidden', 'submit', 'email', 'tel'];
const inputs = [...document.querySelectorAll(selector)];
inputs.forEach(input => {
const { name, type } = input;
if (name && name.length > 0 && excluded.indexOf(type) === -1) {
input.value = `<script> alert('${name}'); </script>`;
}
});
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment