Skip to content

Instantly share code, notes, and snippets.

@mirontoli
Created October 21, 2013 08:32
Show Gist options
  • Select an option

  • Save mirontoli/7080487 to your computer and use it in GitHub Desktop.

Select an option

Save mirontoli/7080487 to your computer and use it in GitHub Desktop.
Resize IFrame
function ResizeIFrame(height, width) {
if (!window.parent)
return;
var senderId = decodeURIComponent(getQueryStringParameter("SenderId"));
var message = "<Message senderId=" + senderId + " >"
+ "resize(" + width + "," + height + ")</Message>";
parent.postMessage(message, '*');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment