function autoResizeIframe() {
	$('.iframe-embed').on('load', function() {
		if(this.contentDocument) {			
			$(this).height(this.contentDocument.documentElement.scrollHeight);
		}
		else {
			$(this).height(this.contentWindow.document.body.scrollHeight);
		}
	});
}
Skip to main content