hello all agian,
i feel like i am asking to many qustion. :\
i have a problam and i cant think of any sulotion for it.
in my script i declare few GLOBAL VARIBLAS but the function dont know them
[CODE=javascript]////global vars//////
var txbox1=20;
var txbox2=30;
var border=1;
function show_var()
{
alert("this is txbo1: " + txbox1 + " this is txbox2: " + txbox2 + " this is size border: "+border);
}[/CODE]
from some reson it all comes out as undifand.
the function show_var is called onload from body
thanks agian
its great forum
i feel like i am asking to many qustion. :\
i have a problam and i cant think of any sulotion for it.
in my script i declare few GLOBAL VARIBLAS but the function dont know them
[CODE=javascript]////global vars//////
var txbox1=20;
var txbox2=30;
var border=1;
function show_var()
{
alert("this is txbo1: " + txbox1 + " this is txbox2: " + txbox2 + " this is size border: "+border);
}[/CODE]
from some reson it all comes out as undifand.
the function show_var is called onload from body
thanks agian
its great forum
Comment