/* * below here is JavaScript */ $("#feat_vid_js").ready(function() { var elem = document.getElementById("feat_vid_js"); //console.log("got our loader"); var parent = elem.parentNode; // add enclosing div var divNode = document.createElement('div'); divNode.setAttribute("style", "overflow:hidden;padding-bottom:56.25%;position:relative;height:0;"); // add frame for video var frameNode = document.createElement('iframe'); frameNode.setAttribute("style", "left:0;top:0;height:100%;width:100%;position:absolute;"); frameNode.setAttribute("frameborder", "0"); frameNode.setAttribute("allow", "accelerometer; encrypted-media; gyroscope; picture-in-picture"); frameNode.setAttribute("allowfullscreen", true); frameNode.setAttribute("width", "640"); frameNode.setAttribute("height", "360"); frameNode.setAttribute("src", "https://player.vimeo.com/video/424394952"); divNode.appendChild(frameNode); parent.appendChild(divNode); });