Advertisement
Guest User

YES

a guest
Aug 30th, 2015
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 0.60 KB | None | 0 0
  1. <!DOCTYPE html>
  2. <html>
  3. <body>
  4.  
  5. <div id="divy">
  6. <iframe width='600' height='800' id='cat' src='mylog.log'></iframe>
  7. </div>
  8.  
  9. <script>
  10.     iframe = document.getElementById('cat');
  11.    
  12.  
  13. iframe.onload = function () { iframe.contentWindow.scrollTo(0,iframe.contentWindow.document.body.scrollHeight); };
  14.  
  15.  
  16.    
  17.  
  18. window.onload = function () { console.log(iframe.contentWindow.document.body.scrollHeight) };
  19.  
  20.  //window.scrollTo(0,document.body.scrollHeight)
  21.     //setInterval(function(){  document.getElementById("divy").innerHTML="<iframe src='test.html'></iframe>"; }, 3000);
  22.    
  23. </script>
  24. <body>
  25. </html>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement