PDA

View Full Version : IFRAME Help needed



chris devine
October 29th, 2002, 16:20
I need to implement IFRAME..i kno how-to do it but I dont want those crappy brs in middle of my pages...an idea what i should do?

Dusty
October 29th, 2002, 16:43
"Brs"?

chris devine
October 29th, 2002, 17:02
brs??? ?????

Bruce
October 29th, 2002, 17:16
Originally posted by chris devine
brs??? ????? Yes, you said "brs" in your first post, an he'd like to know what it means. I wouldn't midn knowing either.

Blank Verse
October 29th, 2002, 17:17
Bars?

Bruce
October 29th, 2002, 17:25
I suppose it could be... but why woud you have bars in the middle of your page?

Blank Verse
October 29th, 2002, 17:31
I don't know, maybe he doesn't want any scrollbars? I don't know, I'm just being subjective. The only other thing I can think of are <br> tags, but that makes no sense.

merickson
October 29th, 2002, 22:15
My guess is that he wants information on the 'borderwidth=0' attribute. Or perhaps 'scrolling="no"'.
Does 'bordercolor' work on IFRAMES?

chris devine
October 30th, 2002, 02:44
woops, sorry...my mistake, I meant no scroll bars/bars

aphel aura
October 30th, 2002, 10:55
<iframe scrolling="no"></iframe>

anhedonia
November 1st, 2002, 03:47
Or set the table width and height to 100%. :)

Stary
November 11th, 2002, 16:13
Originally posted by aphel aura

<iframe scrolling="no"></iframe>
Well, what about Netscape and other browsers than IE? Doesn't IFRAME work only in IE? Is there any similar sintax to be used in Netscape, however - every page must first find out what browser runs it, but is it possible at all?

Bruce
November 11th, 2002, 16:51
Originally posted by Stary
Doesn't IFRAME work only in IE? No.

Dusty
November 11th, 2002, 18:48
All modern graphical browsers that I'm aware of support iFrames, however you should always provide an alternative for those using older or text based ones.

While 5, 6, and 7 do, Netscape 4 does not support iFrames. It has a similar structure called iLayer, which is identical to an iFrame except it doesn't scroll (it can be made to with JavaScript, but I'd advise against it).

Depending on what you're doing, you could use something like this on your pages:


<iframe src="page.html">
<ilayer src="page.html">
<a href="page.html">Click Here</a>
</ilayer>
</iframe>

Most will see the iFrame. Those without iFrame support will see the iLayer if they support that, or the link if they don't. Doing something like this will allow everyone access to your website.

aphel aura
November 12th, 2002, 11:17
Well, what about Netscape and other browsers than IE? Doesn't IFRAME work only in IE? Is there any similar sintax to be used in Netscape, however - every page must first find out what browser runs it, but is it possible at all?

iframe element is part of HTML4 spec, so browser developers should be blamed if their latest version of their browsers doesn't support this.