Simply Use Following Code To Do That
function goBack() {
window.history.back()
}
This Is A Simple Exam That Use Go Back To Last Visited URL Function.
First.html
<html>
<head>
<title>Easy Code Stuff - First Page</title>
</head>
<body>
<h2>This Is The First Page</h2>
<a href="Second.html">Click This To Go To Second Page</a>
</body>
</html>
Second.html
<html>
<head>
<title>Easy Code Stuff - Second Page</title>
<script>
function goBack() {
window.history.back()
}
</script>
</head>
<body>
<h2>This Is The Second Page</h2>
<p>Click The Below Button To Go To Last Page</P>
<input type="button" value="Go Back" onclick="goBack()"/>
</body>
</html>
No comments:
Post a Comment