For removing scrollbars from the iFrame the simplest I could think is CSS as:
Code:
iframe {
overflow: hidden;
}
And for making the content fit automatically use:
Add this to your <head> section
<script language="javascript" type="text/javascript">
function resizeIframe(obj) {
obj.style.height = obj.contentWindow.document.body.scrollHeight + 'px';
}
</script>
And change your iframe to this:
Code:
<iframe name="Stack" src="http://stackoverflow.com/" frameborder="0" scrolling="no" id="iframe" onload='javascript
Bookmarks