PLATFORM
  • Tails

    Create websites with TailwindCSS

  • Blocks

    Design blocks for your website

  • Wave

    Start building the next great SAAS

  • Pines

    Alpine & Tailwind UI Library

  • Auth

    Plug'n Play Authentication for Laravel

  • Designer comingsoon

    Create website designs with AI

  • DevBlog comingsoon

    Blog platform for developers

  • Static

    Build a simple static website

  • SaaS Adventure

    21-day program to build a SAAS

Written By

Do you know history.back() in JavaScript?

Do you know history.back() in JavaScript?

So, we all surf the internet to watch YouTube videos and Stackoverflow and many more. And we usually click "←" this button to go back to the previous website.

back button back button dev dojo

Do you know? You can create the same functionality of "←" this button of browser in Javascript 🔥


Let's create a back button

<button>Go Back</button>

It's time to make it functional ✌️

  • Add onclick attribute to the button
onclick="history.back()"
  • Here's the final and little code 🙂
<button onclick="history.back()">Go Back</button>

How does this work?

The history.back() method loads the previous URL from the history list. It will only work if the previous page exists.

Check out video demo

Try it live by yourself: Live demo (Open this link in this tab only since it will create a previous page 🙂 )


Feel free to reach me out via Twitter - @codewithsnowbit

🌏 Let's connect

Stay tuned for the next article. Stay safe and Happy Coding!

If you enjoyed and find my content helpful, then you can check this out Buy me a coffee

Comments (0)

loading comments