Is there a way to achieve the following functionality with jQuery: create a popup window that sends a value back to the main window when a link in the popup is clicked, then closes the popup and automatically submits a form in the main window based on the returned value?
I am aware that using jQuery Dialog is a common method for this, but I specifically need a popup window because it must be navigable, and I don't want to use an iframe within the jQuery Dialog.
The popup window will be used to gather multiple values, which will eventually be sent back to the main window as a delimited string. This data collection needs to happen before the main window's form is submitted. If there was a standard design pattern for an "Entity Picker," this would be it.
This should be compatible with IE8, Firefox 3.6, Safari 4, and Chrome 5.
Thank you, Mark