Skip to content

Instantly share code, notes, and snippets.

@voltrevo
Created September 21, 2017 02:35
Show Gist options
  • Save voltrevo/c1855112e2e1fe5d5f0e7a458c2f38fa to your computer and use it in GitHub Desktop.
Save voltrevo/c1855112e2e1fe5d5f0e7a458c2f38fa to your computer and use it in GitHub Desktop.
<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