Dynamically create iframe

by abolyc

HTML

<input type="button" id="create" value="Create Iframe">
<div id="iframe_div">
</div>

JavaScript

var file_src = "https://www.yt-download.org/@api/button/videos/pRpeEdMmmQ0";

$('#create').click(function(){
    alert('Button clicked now create an iframe !');
    $('<iframe>')                      // Creates the element
    .attr('src',file_src) // Sets the attribute spry:region="myDs"
    .attr('height',500)
    .attr('width',500)
    .appendTo('#iframe_div');
 });