Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have a pop-up window a user logs into, once they are logged in successful, I have a message that has a link to close the window. But I want it to not only close that pop up window, but I want it to refresh the webpage the pop-up window was clicked on.

So the page can refresh to see that there is a valid login session for that user.

Is this possible w/ jQuery?

share|improve this question
If you're going to refresh the page in this manner, why bother using a pop-up/javascript to log in in the first place? Why not have login controls in a lightbox like div, and have that cause the page to post? – Stephen Wrighton Mar 26 '10 at 13:58

5 Answers

up vote 12 down vote accepted

In your popup window:

$('#closeButton').click(function(e) {
    window.opener.location.reload(true);
    window.close();
    e.preventDefault();
});

Reloads the parent page and closes the popup.

share|improve this answer
1  
Returning false from a handler is equivalent to calling both .preventDefault() and .stopPropagation() on the event object. – Andy Mar 26 '10 at 13:57

You can do this:

window.location.reload()

It just tells javascript to reload the page, this is not dependent on jQuery.

share|improve this answer

Here is a code that refresh parent window and closes the popup in one operation.

<script language="JavaScript">
<!--
function refreshParent() {
  window.opener.location.href = window.opener.location.href;

  if (window.opener.progressWindow) {
     window.opener.progressWindow.close()
  }
  window.close();
}
//-->
</script>
share|improve this answer

Use this code in ajaxlogin.js file for mvc 4 user

$('#closeButton').click(function(e) {
    window.opener.location.reload(true);
    window.close();
    e.preventDefault();
});

Its working fine

share|improve this answer

Works efficiently for me:

$(window).unload(function() {
   if (!window.opener.closed) {
      window.opener.__doPostBack('', '');
      e.preventDefault();
   }
});
share|improve this answer
1  
In firefox the code won't popup a Confirm box asking "To display this page, Firefox must send information that will repeat any action (such as a search or order confirmation) that was performed earlier." – Zeeshan Ali Aug 29 '12 at 7:40

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.