Código
<!DOCTYPE html> <html> <body> <p id="demo">Click the button to make a BUTTON element.</p> <button onclick="crear_frame()">Anadir iframe</button> <script> function crear_frame() { var link = "http://www.google.com" var frame=document.createElement("iframe"); frame.width="300px"; frame.height="250px"; frame.setAttribute("align", "center"); frame.id="iframe"; frame.setAttribute("src", link); document.body.appendChild(frame); document.getElementById("ad54").appendChild(frame); } </script> <div id="ad54">hola</div> </body> </html>
Muchas gracias por leer!!