| Webdesign - JavaScript - Objects - window.open/close |
w = window.open("URL", "windowname" [, "window-properties"]); |
| menubar = yes|no|1|0 | |
| toolbar = yes|no|1|0 | |
| location = yes|no|1|0 | |
| directories = yes|no|1|0 | |
| status = yes|no|1|0 | |
| scrollbars = yes|no|1|0 | |
| resizable = yes|no|1|0 | |
| width = pixels | |
| heigth = pixels | |
| top = pixels | |
| left = pixels |
| window.open('datobox.htm','dagen','height=260,width=600,scrollbars=yes') |
window.close(); //lukker det aktuelle vindue close(); // = window.close() w.close(); //lukker det navngivne vindue |
| w = window.open(); // : |
<button onClick="w=window.open('oc.htm','x','width=200,height=100')">
Open
</button><br>
<button onClick="w.close()">
Close
</button>
|
<a href="#" onClick="window.open('http://www.hondomagic.com','Magic')">
HondoMagic
</a>
|
HondoMagic |
<a href="JavaScript: void window.open('rabbit.htm',
'Rabbit', 'width=150,height=178,top=300,left=400')"> <img src="rabbit-small.gif" width="50" height="59" alt="rabbit" border="0"> </a> |
|
<p style="margin-top: -15px; margin-left: -10px"> <img src="rabbit-large.gif" alt="rabbit" WIDTH="150" HEIGHT="178" border="0"> </p> |