Skip to content

Instantly share code, notes, and snippets.

View laurenclark's full-sized avatar
💜

Lauren Clark laurenclark

💜
View GitHub Profile
@laurenclark
laurenclark / talktome
Created January 25, 2022 09:48
Deal with annoying job applications in the hope of humanising tech recruitment.
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!"
}