Lara
10-10-2003, 07:18 PM
Hi,
Very new at this..appreciate any help..."baby talk" welcomed (like where things need to go...head?body?) :o
I love the "regular full screen script" but I'd like to open it with an image link. I've pasted the whole code so that people will know what I'm talking about...I believe all I need to manipulate is the "button" portion
<form>
<input type="button" onClick="winopen()" value="Open window">
</form>
Posted so people will know what script I mean:
<script>
<!--
/*Full screen window opener script: Written by JavaScript Kit (www.javascriptkit.com) More free scripts here*/
function winopen(){
var targeturl="../index.html"
newwin=window.open("","","scrollbars")
if (document.all){
newwin.moveTo(0,0)
newwin.resizeTo(screen.width,screen.height)
}
newwin.location=targeturl
}
//-->
</script>
<form>
<input type="button" onClick="winopen()" value="Open window">
</form>
Very new at this..appreciate any help..."baby talk" welcomed (like where things need to go...head?body?) :o
I love the "regular full screen script" but I'd like to open it with an image link. I've pasted the whole code so that people will know what I'm talking about...I believe all I need to manipulate is the "button" portion
<form>
<input type="button" onClick="winopen()" value="Open window">
</form>
Posted so people will know what script I mean:
<script>
<!--
/*Full screen window opener script: Written by JavaScript Kit (www.javascriptkit.com) More free scripts here*/
function winopen(){
var targeturl="../index.html"
newwin=window.open("","","scrollbars")
if (document.all){
newwin.moveTo(0,0)
newwin.resizeTo(screen.width,screen.height)
}
newwin.location=targeturl
}
//-->
</script>
<form>
<input type="button" onClick="winopen()" value="Open window">
</form>