ANSWERS: 1
  • There are a number of things wrong. the most impostant one is the way you try to compare values if(myTextField.value = "A") '=' do NOT mean 'equal to' it means 'assign' so: myTextField.value = "A" assigns the value "A" to the variable myTextField.value to compare equality uou must use the '==' operator So if you change '=' to '==' everywhere you intend to compare the program will probably work correctly on your computer. regards JakobA

Copyright 2023, Wired Ivy, LLC

Answerbag | Terms of Service | Privacy Policy