I'm quite new to JavaScript andI'm trying to do the following:
I've two webpages Page1.html and Page2.html On Page1.html I've one textbox and a button. After a user puts in some text in the textbox and clicks the button, I want Page2.html be opened and the text of the textbox appearing in the body of the newly opened Page2.html as follows:
"You wrote" + "[text from the textbox on Page1.html]"
I've tried the getElementById thing. But because of my very obvious green horns, I am missing something very basic in here. Can anybody please elabourate as to how I should proceed?