Back Button
Author: Constantinos L.
Visited 2441,
Followers 1,
Shared 0
Can anyone tell us if we can add a button in a page which when clicking on it, to take us back to the previous webpage we were looking at?
What we are looking for is exaclty like the "back arrow" of the browsers.
Kind Regards,
Posted on the
Hello Constantinos,
There are various ways to do this but probably one of the simplest would be to use code similar to the following pasted in an HTML Object on the page in question:
<html>
<head>
<script>
function goBack()
{
window.history.back()
}
</script>
</head>
<body>
<input type="button" value="Back" onclick="goBack()">
</body>
</html>
You could obviously adapt this code to suit your own needs as required.
Hope this helps,
Paul
Author
I will try this Paul,
Thank you so very much!!!