I was wondering if anybody would be able to help me on this? Is there a way that you can take information from a pop up window(ie. A Hyperlink) and have it poulate a field in a form on the page where the pop up window came from. I hope that makes sense.
In your popup window, if you're trying to populate the parent form with a button click event, try the following:
Code:
var the_val = document.pop_up_form_name.field_name.value;
window.opener.parent_form_name.field_name.value = the_val;
*cLFlaVA
----------------------------
A pirate walks into a bar with a huge ship's steering wheel down his pants.
The bartender asks, "Are you aware that you have a steering wheel down your pants?"
The pirate replies, "Arrrrr! It's driving me nuts!
*cLFlaVA
----------------------------
A pirate walks into a bar with a huge ship's steering wheel down his pants.
The bartender asks, "Are you aware that you have a steering wheel down your pants?"
The pirate replies, "Arrrrr! It's driving me nuts!
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.