Created
March 2, 2025 15:43
-
-
Save derekmc/2d0a79e54eed44abae0097bbd8fc53e5 to your computer and use it in GitHub Desktop.
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
<h1> Demo App Title </h1> | |
<p> This is a demo app </p> | |
<script> | |
setTimeout(change1, 3000) | |
function change1(){ | |
document.body.innerHTML = "<button onclick='change2()'>NEXT</button>" | |
} | |
function change2(){ | |
document.body.innerHTML = "THE END" | |
} | |
</script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment