
Lizard Video
#lizard {
cursor: pointer;
}
document.getElementById(“lizard”).addEventListener(“click”, function() {
var iframe = document.createElement(“iframe”);
iframe.setAttribute(“width”, “560”);
iframe.setAttribute(“height”, “315”);
iframe.setAttribute(“src”, “
https://www.youtube.com/embed/https://youtu.be/qTeA06n8EBI?si=aDr3dKD3LQo3OaWl”);
iframe.setAttribute(“frameborder”, “0”);
iframe.setAttribute(“allowfullscreen”, “”);
this.innerHTML = “”;
this.appendChild(iframe);
});