Skip to content

iframe

<!DOCTYPE html>  
<html lang="en">  
<head>  
    <meta charset="UTF-8">  
    <title>iframe</title>  
</head>  
<body>  
  <iframe id="myframe" src="http://michalszalkowski.com/" width="100%" height="900px"></iframe>
  <script>
    console.log(document.getElementById('myframe'));
  </script>
</body>  
</html>