xbuddy
01-15-2004, 03:03 AM
Passing variables to another page AND disabling the toolbar
I know how to do both of the above seperately, but I haven't found a way to do them both together. To disable the toolbar and other features I use the following code:
var Max = window.open('counter.htm', 'Max', 'top=0,left=0,height=600, width=800, toolbar=no,directories=no,status=no,scrollbars=no,resizable=no,menubar=no');
To pass variables to another page I use the following code:
function go(){
var numb1=100;
var numb2= 200;
var numb3=300;
location.href = "counter.htm?n1=" + numb1+ "&n2=" + numb2 + "&n3=" + numb3;
}
So far, I have not found a way to combine both features. Any ideas on how to do both?
I know how to do both of the above seperately, but I haven't found a way to do them both together. To disable the toolbar and other features I use the following code:
var Max = window.open('counter.htm', 'Max', 'top=0,left=0,height=600, width=800, toolbar=no,directories=no,status=no,scrollbars=no,resizable=no,menubar=no');
To pass variables to another page I use the following code:
function go(){
var numb1=100;
var numb2= 200;
var numb3=300;
location.href = "counter.htm?n1=" + numb1+ "&n2=" + numb2 + "&n3=" + numb3;
}
So far, I have not found a way to combine both features. Any ideas on how to do both?