OK, I've poured over the JS section like the Zapruder film and can't for the life of me figure this out, and me thinks it's stupid-simple.
I'm opening a child window to do a db search and need to either pass the results back to the parent, or just let the parent know when the child has been closed.
q: what's window event I need to trap for? How is it triggered? Is there something I need to set up at the parent before opening the child?
Do these pants make my ass look big?For now, I'm using cookies to store the db results (heavy lifting courtesy of ColdFusion), but I'd rather pass an array or something back to the parent window if that's possible.
function xopenChildWin()
{
features = "height=250,width=550,toolbar=no,menubar=no,resizable=yes,scrollbars=yes"
popup = window.open("getalt.cfm", "searchWin", features);
}
Any help greatly appreciated! Much grass.
-ja