Javascript examples for DOM HTML Element:IFrame
Create <iframe> element and set src
<html> <head></head> <body> <script> function my_code(){ console.log(" working"); } var iframe = document.createElement("iframe"); iframe.src = "http://java2s.com"; document.body.appendChild(iframe); iframe.onload=my_code; </script> </body>/*from ww w. j ava2 s.c o m*/ </html>