5 lines
237 B
JavaScript
5 lines
237 B
JavaScript
|
function resizeIframe(obj) {
|
||
|
obj.style.height = obj.contentWindow.document.documentElement.scrollHeight + 'px';
|
||
|
obj.style.width = obj.contentWindow.document.documentElement.scrollWidth + 'px';
|
||
|
console.log (obj.style.width);
|
||
|
}
|