I need a solution for auto-adjusting the width and height of an iframe to barely fit its content. The point is that t
width
height
iframe
Simplicity :
var iframe = $("#myframe"); $(iframe.get(0).contentWindow).on("resize", function(){ iframe.width(iframe.get(0).contentWindow.document.body.scrollWidth); iframe.height(iframe.get(0).contentWindow.document.body.scrollHeight); });