Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- function autoResizeiFrame(obj) {
- obj.style.height = obj.contentWindow.document.body.scrollHeight + 'px';
- }
- $(document).ready(function() {
- autoResizeiFrame(document.getElementById("iframe"));
- window.addEventListener("resize", autoResizeiFrame(document.getElementById("iframe")));
- });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement