Login | |
|
 |
Re: window.open? I dunno - 6/9/2005 2:42:57 PM
|
|
 |
|
| |
TNO
Posts: 1072
Score: 10
Joined: 12/18/2004
From: thenewobjective.com
Status: offline
|
Use the document.write method
|
|
| |
|
|
|
 |
Re: window.open? I dunno - 6/10/2005 5:16:46 PM
|
|
 |
|
| |
Snipah
Posts: 1343
Score: 6
Joined: 11/1/2004
From: Netherlands
Status: offline
|
Use DIV tags and ABSOLUTE positioning (overlap) :: tadaa ! =)
|
|
| |
|
|
|
 |
Re: window.open? I dunno - 6/11/2005 5:08:25 PM
|
|
 |
|
| |
TNO
Posts: 1072
Score: 10
Joined: 12/18/2004
From: thenewobjective.com
Status: offline
|
If you use document write in the <BODY> of a webpage, data will appear in that location. Whereas if you use it in the <HEAD> tag it will replace the entire page. <body> <script> document.write "Hola Mundo!"; </script> </body> <head> <script> document.write "Hola Mundo!"; </script> </head>
|
|
| |
|
|
|
|
|