Skip to content

Instantly share code, notes, and snippets.

@WillieWalker
WillieWalker / iFrame resize with MooTools 1.12
Created January 5, 2012 17:51 — forked from mrpollo/iFrame resize with MooTools 1.12
MooTools 1.12 and Earlier iFrame resize, mainly used for Joomla compatibility
window.addEvent('domready', function(){
function resizeIframe( iframe ){
var innerDoc = $( ( iframe.contentWindow ) ? iframe.contentWindow.document.body : iframe.contentDocument.body ) );
var objToResize = (iframe.style) ? iframe.style : iframe;
var sizes = innerDoc.getSize();
var offsetHeight = sizes.scrollSize.y + 50;
objToResize.height = offsetHeight + 'px';
}
if( $('iframe') != null ){
var iframe = $('iframe');