Jul 18, 2001 #1 FredGexel IS-IT--Management Feb 14, 2001 19 CA Hello folks, I'd like to know if anyone knows how to reload a left frame on the event of a submit in a right frame location.reload will only reload the current frame... i only want to reload the left frame of the browser. Thanks !
Hello folks, I'd like to know if anyone knows how to reload a left frame on the event of a submit in a right frame location.reload will only reload the current frame... i only want to reload the left frame of the browser. Thanks !
Jul 18, 2001 #2 kristof Programmer Jun 2, 2000 234 BE Hi FredGexel, Use this at the submit on the right page: Code: top.frames.leftFrame.window.location.replace("newUrl") Where leftFrame is ofcourse the frames name. Gtz, Kristof ------------------- Check out my new site: http://kristof.freewebspace.com/ Any suggestions are more than welcome. There's a LOT of work to do, so judge fairly. Upvote 0 Downvote
Hi FredGexel, Use this at the submit on the right page: Code: top.frames.leftFrame.window.location.replace("newUrl") Where leftFrame is ofcourse the frames name. Gtz, Kristof ------------------- Check out my new site: http://kristof.freewebspace.com/ Any suggestions are more than welcome. There's a LOT of work to do, so judge fairly.
Jul 18, 2001 Thread starter #3 FredGexel IS-IT--Management Feb 14, 2001 19 CA Wow tks ! thats a fast reply Upvote 0 Downvote