Click to See Complete Forum and Search --> : Need Minimize and Restore Up/Down Script


Darkness2k4
09-09-2003, 06:45 PM
I have some buttons on this site that are Close, Minimize, And Restore buttons, but i only have the JavaScript for the close button

javascript:window.close();

I need to know how to minimize and restore because this site is full screen.

Darkness2k4
09-09-2003, 06:47 PM
Oops

I forgot to add that I also need the script for a back forward and refresh button

96turnerri
09-10-2003, 06:07 AM
<a href="javascript:history.go(-1)" class="vtxt11linklite">back to previous page</a>

<a href="javascript:history.go(1)" class="vtxt11linklite">forward to next page</a>

96turnerri
09-10-2003, 06:23 AM
your refresh link will just be

<a href="http://www.whatever.com">Refresh</a>

96turnerri
09-10-2003, 07:59 AM
or for refresh try this

<SCRIPT LANGUAGE="JavaScript">
document.write('<form><input type=button value="Refresh" onClick="history.go()"></form>')
</script>