Last active
August 6, 2020 13:53
-
-
Save ellygaytor/b0955f099d155d43e7bd8a4e3cff4263 to your computer and use it in GitHub Desktop.
Toggleable rick roll
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
<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