Reload Window After Pop-up Window Closed

Oct 9, 2001

I have a script that when you click on a form button it post the results in a new pop-up window - and doesn't change the origin window. I then create a close.window on the pop-up window to close it. I now want to make it so the origin page is reload/refreshed after the pop-up is closed via the link. I have tried a few things but can't seem to get it to work.

View 1 Replies


ADVERTISEMENT

Closing A Parent Window The Child Window Should Also Get Closed?

Apr 2, 2006

How can I trap, that on closing a parent window the child window should
also get closed.

View 1 Replies View Related

Open Another Site In New Window When Current Window Is Closed

Mar 26, 2006

I've seen sites that do this and was wondering if anybody could has the code to do it.

View 5 Replies View Related

Popup Window Closed By User Clicks "X" At Top Right Corner Of The Window?

Oct 2, 2009

I guess this case applies to both popup windows opened by window.open() and by showModalWindow().

I have two buttons in popup window, "Cancel" and "Save". If the user clicks either button, there is a "process" at parent window before close() at popup being called. The problem now is, if the user click the "X" sign at top right corner of that popup window, how to trigger the "process"?

I think I can do nothing in popup window since the closure is unexpected programmatically. Can I put some kind of listener in parent window to detect if popup is closed?

View 4 Replies View Related

Client Closed The Window

Jul 14, 2005

How can I get with JavaScript that the client has closed the window?

View 5 Replies View Related

Run A Function - If The Web Page Window Is Closed ?

Aug 10, 2010

I want to run a javascript function when the browser window is closed.i'm developing jsp application.i want execute a update database when the user closes the window.i think i can do this by putting update query in a javascript function and executing this query when the window is closed.

View 3 Replies View Related

Window.closed Not Working In Safari?

Jun 25, 2010

I'm opening a new window with window.open in javascript and i'm keeping his reference to make focus on it or detect if the window is closed or not.My code is working well in Firefox and Chrome (execpt the window.focus, but there's already an issue in chromium: [URL]

In Safari window.open and window.focus works well. But window.closed has a strange behaviour. If I close the new window without navigating in it, window.closed works after closing the window. But if a navigate to another page, window.closed return false, even after closed the window.Is there a way to keep the reference on my new window event if the user navigate to another page ?

here is a sample of my code (I use jQuery 1.4.2):

Code:

MyBrowser = $.klass({
window_ref: null,
initialize: function() {

[code]....

View 1 Replies View Related

Set Print Function And POP-UP Window Is Closed?

May 4, 2011

How to set print function and POP-UP window is closed?

I have working code to print content like:

PHP Code:

function printpage() {
window.print();
}

and <body onload="printpage()"> in POP-UP window.

How to automatic close this POP-UP when user clicks Standard windows print button?

View 4 Replies View Related

Blocking Parent Window Until The Popup Is Closed?

Jan 19, 2010

I'm trying to force my users to close a popup window before they can return to the Parent window. I more or less want to "lock" the parent window and force the user to fill in the info on the popup and hit submit, which in turn will close the popup and then allow the user to continue working on the parent window.

View 1 Replies View Related

How Can I Prevent An Opened Window To Be Closed By Clicking The Right-top 'X' ?

Jun 16, 2005

I want to prevent an opened window to be closed by clicking the right-top 'X' . Whenever user try to close the window by clicking the right-top 'X', an alert message will be generated and it will not be browser specific.

View 6 Replies View Related

Display $yes In The Index.php Page After The Modal Window Of Profile.php Is Closed?

Apr 26, 2010

I have two php files.

index.php

<html>
<head>
<script type="text/javascript">[code]....

How would I be able to display $yes in the index.php page after the modal window of profile.php is closed? Or how would I be able to refresh the index.php page after profile.php page is closed?

View 4 Replies View Related

Location Reload On Window Close

Jul 23, 2005

I'm popping a window to a page with a different dns than the parent, and
i want the opener's location reloaded when this window is closed.

With Mozilla it seems that all the opener's methods and properties are
protected because the dns are different. A security exception
(permission denied) is thrown every time i try to exec an
"opener.location.reload()" from the pop up window.

An alternative would be catching the window closing from the opener, but
i don't know how this could be done.

View 2 Replies View Related

How Hard Can It Be To Reload The Main Window?

Jul 20, 2005

I'm trying to reload a frame from a pop-up, but really cannot figure
this out.

Within my index.htm file, I make a link to call a pop-up frame with a
javascript function that calls the following code from an external
javascript source file, dynamically created with PHP...

View 3 Replies View Related

Reload Previous / Parent Window

Apr 13, 2009

one windown is opening a popup window.. and then the popup window is interacting with user information and then some processing with the use of some more php file.. now at last.. there is a "ok" button which should close this popup window and reload the parent window.. from where it was actually called.. i am trying to reload previous/parent window... using the function

[Code]...

View 2 Replies View Related

Reload Text And Image In Same Pop Up Window

Mar 23, 2006

I am building a web site and am trying to streamline the way the site works. I have a list of companies that each will have a link to a new page. What I want to do is make it open a single pop up for all companies. In this pop up there will be one image and a few lines of text. Therefore, when a viewer clicks on one company's link and then clicks on another it will load the second company's info in the same pop up. Code:

View 4 Replies View Related

How To Reload An Iframe From A Popup Window

Jun 4, 2004

I am a total javascript newbie and have been pulling out my hair trying to figure out how I could reload an iframe inside the main browser window from a popup window.

What I am trying to do is have a system where people can upload pictures from the popup and then veiw the pictures they have uploaded as they upload them in the main window.

View 1 Replies View Related

Center Window On Screen Without Reload?

Mar 15, 2006

I am using a script to open a new window and center it on the screen (to expand a photo). The problem is that when you click the link, it opens the new small window in the top-left corner, then moves it to the center.

Is there anyway to have it just load in the center? It doesn't look professional moving mid-load.

View 4 Replies View Related

How To Reload Iframe Content From A Pop-up Window?

Jun 2, 2007

I have a main webpage with an iframe embedded inside:


PHP Code:
<IFRAME id="imagesframe" src="images_frame.php" width="100%"></IFRAME>

Now, I want to be able to reload the content of that iframe from a pop-up window. I tried the following JavaScript command inside the pop-up window:

PHP Code:
opener.document.getElementById("imagesframe").location.reload();

but when I call that command i get the following JavaScript error: ...

View 2 Replies View Related

Reload The ASP.NET Page In The Parent Window?

Dec 29, 2010

I am trying to reload the ASP.NET page in the parent window from a javascript in a submodal window. Now I don't want a straight reload as in window.top.location.reload() because the page was previously posted back and thus a warning will be displayed by the browser. I also tried window.top.location.href=window.top.location.href, but that doesn't seem to load a fresh copy of the page. Does it make a difference that the page in the parent window is AJAX enabled and the script that launched the submodal is in an UpdatePanel?

View 7 Replies View Related

Window.location.reload Behaves Randomly?

Aug 6, 2010

i am invoking window.opener.location.reload function from a pop up window to reload the parent page. But this seems to behave randomly. Sometimes the reload would preserve form data eg. the state of the drop down lists. On some other occasions, it would reset all the drop down lists and form data. Does window.location.reload resend form data to the server?

View 1 Replies View Related

JQuery :: Open Window On Page Reload?

Mar 16, 2011

I've got the following bit of code:

Code:
$(function(){
$(".facebook").fancybox({
'width': '80%',

[Code]....

I can't get the iFrame to load again. In my window.load function I'm basically trying to reinitialize the fancybox iframe code and then based on the link here: [URL]

I'm trying to trigger it again. The alert appears so I know it's getting to the function but it's not opening up the iFrame.

View 1 Replies View Related

Script Ot Open A Popup Window - And Reload Original Page

Jul 3, 2007

I need a script to open a popup window which contains a php form.
after the form has been submitted or cancelled i need to go back to
the originated page (php also) and reload original page.

do you guys have any simple solutions?

View 1 Replies View Related

Window.opener.location.reload (true) Doesn't Work?

Aug 13, 2009

I have a popup that contains a form. When I submit that form, I need 1) the data to get saved into my database, 2) the popup to close, and 3) the parent window to refresh and display the updated data.

I found the following code in an old thread, but the parent window still shows the old data after it appears to reload. The data is saved in the database, but the parent window only shows the updated data when I manually refresh it by hitting F5.

Code:
<form action="process_form.php" method="post" onSubmit="window.opener.location.reload(true); window.close();">

View 3 Replies View Related

Jquery :: Reload Location When Window Is Resizing - Firefox Won't Work?

Nov 24, 2009

I wonder why firefox won't work with this script below, but it works on IE, Safari, and Chrome instead?

Code:
$(document).ready(function(){
$(window).resize(function(){
location.reload();

[Code]....

The reason to reload the page is to reload the google map when the window is being resized.

Here is the link to look at, [URL]

View 2 Replies View Related

User A Popup Message Without Reload Of Main Browser Window?

Mar 15, 2011

I'm looking for nice solution to handle file downloads. The problem with classic link in <a href="file"> is that in case of missing file, the main browser window is reloaded with 404 error, but I'd like to present to user a popup message without reload of main browser window.

View 3 Replies View Related

Child Window Close Event - Opening Another Link In A Separate Window Using Window.open()

Jan 29, 2010

I have a HTML and I am opening another link in a separate window using window.open() . The child window is something like 'http://yahoo.com' which is out side html. I need to refresh the parent window when the child window is closed.

View 4 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved