WebSite X5Help Center

 
Constantinos L.
Constantinos L.
User

Back Button  en

Author: Constantinos L.
Visited 2140, Followers 1, Shared 0  
Tags: back,button

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
2 ANSWERS
Paul M.
Paul M.
Moderator

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

Read more
Posted on the from Paul M.
Constantinos L.
Constantinos L.
User
Author

I will try this Paul,

Thank you so very much!!!

Smile

Read more
Posted on the from Constantinos L.