Try using a valid URL DOCTYPE for both the top page and the page in the iframe. Since iframe is deprecated in HTML strict and XHTML, and XHTML isn't really supported by IE, I'd suggest (with a plain opening html tag):
Code:
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
"http://www.w3.org/TR/html4/loose.dtd">
<html>
In other words, use the above to replace this:
Code:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
on the page in the iframe. And use it to replace this:
on the top page.
There could be other problems. But yes, this is the right place to post this question.
Bookmarks