I have a link in my pop-up window that is supposed to close the pop-up window and show something else on the original page. The .show() is working but its not closing the window, it just removes everything inside of it (leaving it completely white and blank).

$('a', w.document).click(function () {
    w.document.close();
    $('#callScript').show();                
});

How do I close the pop-up window?

link|improve this question

75% accept rate
I think you're looking for window.close(), not w.document.close(). – Edwin Feb 22 at 18:54
It was w.window.close() actually because in my code earlier I had written var w = window.open('', '_blank', 'width = 500, height = 500'); Thanks for the inspiration though! – Tanya Feb 22 at 18:57
If that's the case, then you would call w.close(). – Nick Beranek Feb 22 at 19:04
use this $('#callScript').hide();//hide will close – Sam Arul Raj Feb 22 at 19:06
feedback

1 Answer

If w is the handle to your popup window:

$('a', w.document).click(function () {
    w.close();
    $('#callScript').show();                
});
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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