Created
September 21, 2017 02:35
-
-
Save voltrevo/c1855112e2e1fe5d5f0e7a458c2f38fa 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
<script> | |
window.addEventListener('load', () => { | |
const heading = unescape(location.search.slice(1)); | |
document.title = heading; | |
const h1 = document.createElement('h1'); | |
h1.style.width = '100%'; | |
h1.style.textAlign = 'center'; | |
h1.textContent = heading; | |
document.body.appendChild(h1); | |
}); | |
</script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment