Qbasicnews.com

Full Version: iframes and body tags (html)
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Is it possible to embed a BODY tag within an IFRAME?
I think IFRAMEs have an attribute that gets the source from somewhere else, that file can be an html document with a body tag.

Is this for your tag board?
IFrames are meant only to be an html frame inside another. You can, however, change the innerHTML in IE (though I wouldnt recommend it).
example source:
<html>
<body>
<!--stuff--!>
</body>
</html>

<iframe src="http:/site.com/examplesource">
</iframe>

thats all i know. hope it helps in some way....even though it doesn't :roll:
OK..yeah, I'm using the src property. I was just confused, I didn't think it was an actual "frame" per se...