History - Go Previous Page

Back function to go to previous web page

Explanation

Methods or Function: back()


back() function is used to go back to the previous web page in the history list. This does the same function as of back button in the browser window.
Code: history.back();

Example:

To create a back button that takes to the previous page when users click on it.
Code:
<script language="javascript">
function goback(){
history.back();
}
</script>
<input type=button value="go back" onClick=goback()>

Result:


In the above example
a) we created a button
b) added an onClick event listener to the button.
c) when user click on the button the javascript function goback() will be invoked.
d) in that function we call history.back().

Ask Questions

Ask Question