I am using a form to \"Rate\" a page. This form \"posts\" data to a php script elsewhere. I simply want to display a link after the form is processed which will bring the us
we can navigate to previous page by use any of below.
1) window.location.href="give url you want to go";
or
2) window.history.back();
or
3) window.history.go(-1);
or
4) window.history.back(-1);