Skip to content

Instantly share code, notes, and snippets.

@JustinStitt
Created May 13, 2022 03:59
Show Gist options
  • Save JustinStitt/f7534452fd562a93afe51497a7224ffe to your computer and use it in GitHub Desktop.
Save JustinStitt/f7534452fd562a93afe51497a7224ffe to your computer and use it in GitHub Desktop.
on click copy text content
document.addEventListener('click', () => {
let question = document.getElementsByClassName('_3vK03yy396dmBwrrRmeApE')[0];
console.log(question.textContent);
navigator.clipboard.writeText(question.textContent);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment