Advertisement
Guest User

Untitled

a guest
Mar 25th, 2015
261
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.29 KB | None | 0 0
  1. function autoResizeiFrame(obj) {
  2. obj.style.height = obj.contentWindow.document.body.scrollHeight + 'px';
  3. }
  4. $(document).ready(function() {
  5. autoResizeiFrame(document.getElementById("iframe"));
  6.  
  7. window.addEventListener("resize", autoResizeiFrame(document.getElementById("iframe")));
  8. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement