Skip to content

Instantly share code, notes, and snippets.

@abitdodgy
Last active September 23, 2017 12:50
Show Gist options
  • Save abitdodgy/4d578e9c9ae8dfd2ecadc0adfefa481e to your computer and use it in GitHub Desktop.
Save abitdodgy/4d578e9c9ae8dfd2ecadc0adfefa481e to your computer and use it in GitHub Desktop.
Resizes iframe to fit content on window resize and load events.
var _pc_resizeIFrame = function(iframe) {
iframe.height = iframe.contentDocument.body.scrollHeight;
}
document.querySelectorAll(".pc-iframe").forEach(function(iframe) {
window.onload = function () {
_pc_resizeIFrame(iframe);
};
window.onresize = function () {
_pc_resizeIFrame(iframe);
};
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment