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?
window.close(), notw.document.close(). – Edwin Feb 22 at 18:54w.close(). – Nick Beranek Feb 22 at 19:04