Created
October 28, 2022 18:30
-
-
Save ethanaobrien/3e933a936e64b469d4d60ebaf9245880 to your computer and use it in GitHub Desktop.
This file contains 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
setInterval(() => { | |
Array.from(document.getElementsByTagName('div')).forEach(e => { | |
if (Array.from(e.getElementsByTagName('div')).length === 0) { | |
e.innerHTML = 'we should do breakout'; | |
} | |
}) | |
}, 10) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Youre welcome