Retry & Cancel

liunx

Guest
Iam getting a Retry & Cancel warning message by windows explorer when ever i do
1.window.opener.reload();
2.window.opener.document.execCommand('refresh');

Can any body give a solution for this
.put a function in the window your trying to reload, and call it..lets say clean....

function clean(){
current=window.location;
window.location=current;
}

then call ....window.opener.clean();

should work, I have used it quite a bit before.
 
Top