Skip to content

Instantly share code, notes, and snippets.

@cbcwebdev
Created December 21, 2011 19:53
Show Gist options
  • Save cbcwebdev/1507426 to your computer and use it in GitHub Desktop.
Save cbcwebdev/1507426 to your computer and use it in GitHub Desktop.
// say this is the "button" click that makes the iframe fullscreen
$('button.fullscreen').click(function() {
// fetch existing iframe
var $iframe = $('#iframeId');
// clone iframe to push it into a new content area
var $iframeInstance = $iframe.clone();
// add clone to body
$iframeInstance.appendTo('body');
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment