How can I refresh my previous window.
The thing is I want the previous window to be refreshed when user clicks a "goback button" (refresh the window he goes back to). I tried to put a
window.location.reload() in <body onload=..> in that previous window, but that causes a reload loop.
I tried with something like this:
function reload() {
window.location.reload(-1);is there another way to dothis!
window.history.go(-1);
}
But the first line doesn't work!!
Thanks
The thing is I want the previous window to be refreshed when user clicks a "goback button" (refresh the window he goes back to). I tried to put a
window.location.reload() in <body onload=..> in that previous window, but that causes a reload loop.
I tried with something like this:
function reload() {
window.location.reload(-1);is there another way to dothis!
window.history.go(-1);
}
But the first line doesn't work!!
Thanks