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
const textInputs = document.querySelectorAll('input[type=text]'); | |
const emailInputs = document.querySelectorAll('input[type=email]'); | |
const allInputs = [...textInputs, ...emailInputs]; | |
const textAreas = document.querySelectorAll('textarea'); | |
for (let i = 0; i < allInputs.length; i++) { | |
allInputs[i].value = "Read my CV!" | |
} |
OlderNewer