Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
i have an iframe and need it ti shrank and grow according to the contents height in the run time
<iframe src='demo-frame.php' >Your browser doesn't support iFrames.</iframe>
any help?
Maybe try the following with some jQuery...
$('#iframeID').load(function () { $(this).height($(this).contents().height()); $(this).width($(this).contents().width()); });