How to return to the previous page
There are two ways to return to the previous page using JavaScript. These are functionally equivalent:
If it is more convenient, the 'history.back()
'
function can be called via a link, e.g:
<a href="javascript:history.back()">Try it now</a>
gives 'Try it now'.
These are functionally equivalent to the browser's 'back' button and will have no effect if there is no previous page.