I want to implement the back button functionality so that upon clicking that the previous visited page has to be presented without reloading it, but to be seen as it was updated/visited before.
I have implemented it as
<input type="button" name="back" value="Back" onClick="history.go(-1)" />
but its trying to load the page.
Is it possible to implement back button functionality without loading the page?