Answers for "js go back in history"

1

history back js

<a href="javascript: history.go(-1)">Go Back</a>

// or

<a href="##" onClick="history.go(-1); return false;">Go back</a>
Posted by: Guest on August-03-2021
1

JS history back

history.go(-1)
/* or */
history.back()
Posted by: Guest on April-26-2022

Code answers related to "Javascript"

Browse Popular Code Answers by Language