What's wrong with this statement:
function one() {
var take = document.form1.textfield2.value;
if(document.form1.textfield.value == "x"
{
take == "y";
}
}
This is supposed to see if the value of "textfield" is x, if it is then make the value of "textfield2" y...
Thanks for the help...
I have not failed; I merely found 100,000 different ways of not succeding...
function one() {
var take = document.form1.textfield2.value;
if(document.form1.textfield.value == "x"
take == "y";
}
}
This is supposed to see if the value of "textfield" is x, if it is then make the value of "textfield2" y...
Thanks for the help...