iframes using Strict DOCTYPE

I was just wondering if there was any way you could put an iframe in a page with the HTML 4.01 Strict DOCTYPE. Alternatively, is it allowed in XHTML Strict? I got the rest of my site to validate strict on the W3C validator, and Tidy has zero warnings or errors, so I'm proud, but one page I need to use an iframe in... unless someone can tell me how to embed a page into another page using a different method.

Thanks ahead of time.

EDIT: In case you wanna see it, it's at http://www.systemroot.biz/

#332035

no iframe in strict :slant: you can use them in transitional html and xhtml, but not in their strict counterparts. maybe you can try some XMLHttpRequest and javascript, but I know it's not the same...

#332036

IFRAMEs are depreciated in both XHTML and HTML strict. They were replaced by OBJECT.

example:

I think there is some debate as to how well this works.

#332037

no iframe in strict :slant: you can use them in transitional html and xhtml, but not in their strict counterparts. maybe you can try some XMLHttpRequest and javascript, but I know it's not the same...

Meh. I'm too good for Loose and Frameset :P

IFRAMEs are depreciated in both XHTML and HTML strict. They were replaced by OBJECT.

example:

I think there is some debate as to how well this works.

Exactly what I was looking for, thanks.

#332039

Oh, incidentally, you can validate an IFRAME if you cheat a bit...

...since this is technically a comment.

#332064