ItSolutionStuff.com

How to Disable Browser Back Button using JQuery?

By Hardik Savani • November 5, 2023
jQuery

How can we disable browser forward and back button using jquery or javascript that is lead topic. we can use window.history.pushState for restrict back button of browser in jquery. we can disable back button in browser using jquery in php or any mvc framework like laravel, codeigniter etc.

Sometime we need to restrict back button function in your browser because of security. so no one can access that page with back button.

I will give you simple example to disable browser back button in js, so you can run js code in your local system and see it. Just see bellow example:

Example:

<!DOCTYPE html>

<html>

<head>

<title>How to disable browser back button using Jquery? - ItSolutionStuff.com</title>

<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.8.3/jquery.min.js"></script>

</head>

<body>

<button>click on browser back button</button>

</body>

<script type="text/javascript">

$(document).ready(function() {

window.history.pushState(null, "", window.location.href);

window.onpopstate = function() {

window.history.pushState(null, "", window.location.href);

};

});

</script>

</html>

I hope it can help you....

Hardik Savani

Hardik Savani

I'm a full-stack developer, entrepreneur, and founder of ItSolutionStuff.com. Passionate about PHP, Laravel, JavaScript, and helping developers grow.

📺 Subscribe on YouTube

We Are Recommending You

How to Get Selected Checkbox Value from Checkboxlist using JQuery?

Read Now →

How to Copy Text to Clipboard without Flash using JQuery?

Read Now →

How to Stop Setinterval() After Sometimes in JQuery?

Read Now →

How to Remove Comma from String in JQuery?

Read Now →

How to Disable Right Click Menu using JQuery?

Read Now →

How to Get the Current URL using JQuery?

Read Now →

JQuery Hide and Show Password using Eye Icon Example

Read Now →

JQuery Bootbox Modal Dialog Prompt Example

Read Now →

JQuery Highlight Text by Search and Match Example

Read Now →

JQuery Tag Input Plugin Example Code

Read Now →

Preview an image before Upload using jQuery Example

Read Now →

JQuery Delete Confirm Modal using Bootbox Example

Read Now →

How to Check Image Loaded or Not in JQuery?

Read Now →

How to Check Undefined, Empty and Null in JQuery?

Read Now →