WebSite X5Help Center

 
Constantinos L.
Constantinos L.
User

Back Button  en

Autor: Constantinos L.
Visitado 2118, Followers 1, Compartido 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,

Publicado en
2 RESPUESTAS
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

Leer más
Publicado en de Paul M.
Constantinos L.
Constantinos L.
User
Autor

I will try this Paul,

Thank you so very much!!!

Smile

Leer más
Publicado en de Constantinos L.