azmicolejr

Tombol Back HTML + JS

Apr 16th, 2018
21,850
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 5 0.11 KB | None | 0 0
  1. <button onclick="goBack()">Go Back</button>
  2. <script>
  3.     function goBack() {
  4.         window.history.back();
  5.     }
  6. </script>
Advertisement
Add Comment
Please, Sign In to add comment