Skip to content

Instantly share code, notes, and snippets.

@ellygaytor
Last active August 6, 2020 13:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ellygaytor/b0955f099d155d43e7bd8a4e3cff4263 to your computer and use it in GitHub Desktop.
Save ellygaytor/b0955f099d155d43e7bd8a4e3cff4263 to your computer and use it in GitHub Desktop.
Toggleable rick roll
<div id="rrl">
</div>
//On is one
//off is zero
<script>
const rrl=0;
if (rrl) {
document.getElementById("rrl").innerHTML += '<iframe width="0" height="0" src="https://www.youtube-nocookie.com/embed/oHg5SJYRHA0?autoplay=1" frameborder="0" allow="accelerometer; autoplay; encrypted-media; gyroscope; picture-in-picture" allowfullscreen></iframe>';
}
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment