WebSite X5Help Center

 
Constantinos L.
Constantinos L.
User

Back Button  en

Auteur : Constantinos L.
Visité 2125, Followers 1, Partagé 0  
Mots-clés :: 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,

Posté le
2 RéPONSES
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

Lire plus
Posté le de Paul M.
Constantinos L.
Constantinos L.
User
Auteur

I will try this Paul,

Thank you so very much!!!

Smile

Lire plus
Posté le de Constantinos L.