CLosing Popup Window

liunx

Guest
Is there anyway to close a pop-up window after an asp redirect that was opened via javascript?

Thanks~if you are tracking the name then you can
var x;

function w()
{
x = window.open(...);
}

function onClose()
{
x.close();
}Thanks! That is exactly what I was looking for!Also you can use

window.close();
 
Back
Top