PHP2 wrote:
[color=blue]
> how I can create frame inside in total middle of document with?[/color]
HTML 4.01 knows so called inline frames e.g.
<iframe name="iframeNam e"
src="whatever.h tml"
width="100%" height="200">
<a href="whatever. html">whatever</a>
</iframe>
If you want to create one with script try
var iframe;
if (document.creat eElement && (iframe =
document.create Element('iframe '))) {
iframe.src = 'whatever.html' ;
iframe.width = '100%';
iframe.height = '200';
iframe.name = 'iframeName';
document.body.a ppendChild(ifra me);
}
"Martin Honnen" <mahotrash@yaho o.de> wrote in message
news:41f68e76$0 $823$9b4e6d93@n ewsread2.arcor-online.net...[color=blue]
>
>
> PHP2 wrote:
>[color=green]
> > how I can create frame inside in total middle of document with?[/color]
>
> HTML 4.01 knows so called inline frames e.g.
> <iframe name="iframeNam e"
> src="whatever.h tml"
> width="100%" height="200">
> <a href="whatever. html">whatever</a>
> </iframe>[/color]
RE: I am try HTML option like below:
[color=blue]
> RE: I am try HTML option like below:
>
>
> <iframe name="iframeNam e"
> src="whatever.h tml"
> width="100%" height="*" border="0">
> <a href="whatever. html">whatever</a>
> </iframe>
>
>
> - But it not work.. I wish border 0, that frame page be same 'flat' like in
> main page... not 1mm inside main page..[/color]
Read the HTML 4.01 specification first, see
<http://www.w3.org/TR/html4/present/frames.html#h-16.5>
then if you have further questions on iframes try a group about HTML
authoring.
Comment