Skip to content

Instantly share code, notes, and snippets.

View rakeden's full-sized avatar
🚀

Rakeden rakeden

🚀
View GitHub Profile
@rakeden
rakeden / iframe.js
Created April 12, 2024 14:33 — forked from fabrizim/iframe.js
Javascript for updating iframe height with postMessage
(function(){
function post_height(){
var msg = JSON.stringify({event:'size', height: document.body.scrollHeight});
window.top.postMessage(msg, '*');
}
var onload = window.onload;
window.onload = function(){
if( onload && typeof onload =='function'){