|
-
September 29th, 2007, 11:11 PM
#1
javascript refreshing parent window in child
currently have a program which runs in this sequence....
main window calls a popup window.. in the popup will process n update.
how can i set to close the window with <a href="javascript:refreshparent(...)">close me </a>
wanted to refresh the parent and close the child window. i got some code from google search but it doesnt seems to work 
thanks in advance.
0 error(s), 0 warning(s)
-
September 30th, 2007, 08:51 AM
#2
Re: javascript refreshing parent window in child
Just add self.close() to your href attribute.
Code:
<a href="javascript:refreshparent(...);self.close()">close me </a>
If the post was helpful...Rate it! Remember to use [code] or [php] tags.
-
September 30th, 2007, 09:08 AM
#3
Re: javascript refreshing parent window in child
0 error(s), 0 warning(s)
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|