Re: [WSG] braindead - iframes???

2005-09-07 Thread Bert Doorn

G'day

Kenny Graham wrote:

Objects of type text/html (or application/xhtml+xml) are what I use. But 
good luck getting them to work in IE. In my experience, IE will only do it 
if it's a local (x)html file.
 

Works fine for me in Firefox and Opera 8.  Works in IE6 Windows as well, 
if served as text/html.   Don't know about IE5.x


If you're serving application/xhtml+xml it's not going to work in IE 
because IE doesn't like application/xhtml+xml.


Regards 
--

Bert Doorn, Better Web Design
http://www.betterwebdesign.com.au/
Fast-loading, user-friendly websites 



**
The discussion list for  http://webstandardsgroup.org/

See http://webstandardsgroup.org/mail/guidelines.cfm
for some hints on posting to the list  getting help
**



Re: [WSG] braindead - iframes???

2005-09-07 Thread Richard Czeiger
Umm, sorry Bert, Kenny's right. Totally unpredictable behavious of the 
object tag in IE6.
Sometimes won't load, sometimes throws up a script error, and any JavaScript 
that I have can't talk to it.


:o(

Any other suggestions?

R

- Original Message - 
From: Bert Doorn [EMAIL PROTECTED]

To: wsg@webstandardsgroup.org
Sent: Wednesday, September 07, 2005 4:07 PM
Subject: Re: [WSG] braindead - iframes???



G'day

Kenny Graham wrote:

Objects of type text/html (or application/xhtml+xml) are what I use. But 
good luck getting them to work in IE. In my experience, IE will only do it 
if it's a local (x)html file.


Works fine for me in Firefox and Opera 8.  Works in IE6 Windows as well, 
if served as text/html.   Don't know about IE5.x


If you're serving application/xhtml+xml it's not going to work in IE 
because IE doesn't like application/xhtml+xml.


Regards -- 
Bert Doorn, Better Web Design

http://www.betterwebdesign.com.au/
Fast-loading, user-friendly websites

**
The discussion list for  http://webstandardsgroup.org/

See http://webstandardsgroup.org/mail/guidelines.cfm
for some hints on posting to the list  getting help
**





**
The discussion list for  http://webstandardsgroup.org/

See http://webstandardsgroup.org/mail/guidelines.cfm
for some hints on posting to the list  getting help
**



Re: [WSG] braindead - iframes???

2005-09-07 Thread Kenny Graham
There's only one way I can think of making it work in IE:
Use PHP to copy the external page to a local files(s), and use
object to load it. IE doesn't seem to have a problem with
local html files. Not sure about scripting support for it
tho. This is the only situation when I don't use XHTML.
Good luck. hehe


Re: [WSG] braindead - iframes???

2005-09-06 Thread Bert Doorn

G'day


What's out there that displays the contents of a URI and validates?
 


object type=text/html data=whatever.html id=Something
Alternative content here
/object

Give the object a width and height with CSS

#Something { width: 40em; height: 30em; }

Regards 
--

Bert Doorn, Better Web Design
http://www.betterwebdesign.com.au/
Fast-loading, user-friendly websites 



**
The discussion list for  http://webstandardsgroup.org/

See http://webstandardsgroup.org/mail/guidelines.cfm
for some hints on posting to the list  getting help
**



Re: [WSG] braindead - iframes???

2005-09-06 Thread Kenny Graham
Objects of type text/html (or application/xhtml+xml) are what I
use. But good luck getting them to work in IE. In my
experience, IE will only do it if it's a local (x)html file.