Click to See Complete Forum and Search --> : resized windows.. help, please =)


Von
05-07-2003, 01:04 AM
hello :)

i need a script that allows me to reuse the same window, but resized (i need it to resize when clicking on a link). either that, or something that closes a window and opens a new one at the same time.

help would be very much appreaciated. thank you :)

KeshavaR
05-07-2003, 01:36 AM
Hi Von,

You could effectively use "resize" concept - as shown below :

Example-
<script>
function resizewindow()
{
this.resizeTo(610,794);
}
</script>

610 - Width
794 - Height

and use this function on click / onload accordingly.

Have a great day !

Keshav