Hello,
How would I be able to do an onClick to take a value from a link and put that into a form field in another form located in a different browser window with a different url?
For example:
window 1 /browser A
<a href="#" onClick="takeThisValue();">thisIsTheValueIwantToUse</a>
window 2 /browser B
(site is: www.anothersite.com) Form name is "sampleForm" and the textfield in the sampleForm I want to put it in is called "formValue".
In other words, I want to put the value "thisIsTheValueIwantToUse" from a link in window 1 / browser A and put in the text field called "formValue" in form called "sampleForm" in window 2 /browser B.
thoughts?
Thanks