Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save grahamd711/c6f5cc0ac8e03d8bc7c9faec5a37052f to your computer and use it in GitHub Desktop.
Save grahamd711/c6f5cc0ac8e03d8bc7c9faec5a37052f to your computer and use it in GitHub Desktop.
Criteo Resize Iframe
$(function () {
//setup these vars only once since they are static
var $myIFRAME = $("#criteo-iframe"),//unless this collection of elements changes over time, you only need to select them once
ogWidth = 700,
ogHeight = 600,
ogRatio = ogWidth / ogHeight,
windowWidth = 0,//store windowWidth here, this is just a different way to store this data
resizeTimer = null;
function setIFrameSize() {
if (windowWidth < 480) {
var parentDivWidth = $myIFRAME.parent().width(),//be aware this will still only get the height of the first element in this set of elements, you'll have to loop over them if you want to support more than one iframe on a page
newHeight = (parentDivWidth / ogRatio);
$myIFRAME.addClass("iframe-class-resize").css({ height : newHeight, width : parentDivWidth });
} else {
$myIFRAME.removeClass("iframe-class-resize").css({ width : '', height : '' });
}
}
$(window).resize(function () {
//only run this once per resize event, if a user drags the window to a different size, this will wait until they finish, then run the resize function
//this way you don't blow up someone's browser with your resize function running hundreds of times a second
clearTimeout(resizeTimer);
resizeTimer = setTimeout(function () {
//make sure to update windowWidth before calling resize function
windowWidth = $(window).width();
setIFrameSize();
}, 75);
}).trigger("click");//run this once initially, just a different way to initialize
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment