I have a page having - a text field - a link opening a pop up page. On that pop up page, I want it so that when user clicks on it, the original web page's text field is valued with the link anchor text. Can someone guide me how to do this?
Try this: <a href='somewhere' onclick="opener.document.forms.nameOfForm.fieldName.value=this.text">CLICK ME</a> Code (markup):