Hi,
I have a javascript function that sets the value of an input area on my page. I need to update the function so that it also sets the value of the input area on a separate page. Currently, I am using a frameset, so I can see both pages simultaneously, but I cannot change the value of the upper page from the lower page which contains the script to update the input areas.
Here is my code:
document.lowerForm.inputOne.value = myVar; //Successfully Updates Input Area.
document.upperForm.inputTwo.value = myVar; //Cannot find specified form and input area.
Thanks,
-Ashton