Skip to content

Instantly share code, notes, and snippets.

@bpander
Created January 6, 2014 21:05
Show Gist options
  • Save bpander/8289813 to your computer and use it in GitHub Desktop.
Save bpander/8289813 to your computer and use it in GitHub Desktop.
window.addEventListener('orientationchange', function () {
var $iframe = $('iframe');
var $parent = $iframe.parent();
var width = $iframe.parent().width();
$iframe.width(width);
setTimeout(function () {
$iframe.width('');
}, 500);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment