>How can you refresh a specifc frame from a popup window and then close that >window? >I just can't find the correct syntax. > >Any ideas? > ><script language="javascript"> > >//parent.LeftFrameBottom.location.href=".././modules.cfm?<CFOUTPUT>#client.u >rltoken#</CFOUTPUT>"; > window.close(); ></script>
A couple things. First, your path reference looks off to me. I think you just want ../modules.cfm, but I could be wrong as I don't know your architecture. I think that ".././" just puts you in the same directory you're already in. But here's how to do what you're looking for: <script language="javascript"> <!-- parent.FrameName.location.href = '../modules.cfm?query_string'; self.close(); //--> </script> Again, not sure about your URL (I could be wrong), but that's how you do the refresh and close. Regards, Dave. _________________________________________________________________ Send and receive Hotmail on your mobile device: http://mobile.msn.com ______________________________________________________________________ Get the mailserver that powers this list at http://www.coolfusion.com FAQ: http://www.thenetprofits.co.uk/coldfusion/faq Archives: http://www.mail-archive.com/[email protected]/ Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists

