ItSolutionStuff.com

How to Disable F5 Refresh Button using JQuery?

By Hardik Savani • July 4, 2023
jQuery

In this post, we will learn how to prevent or disable f5 refresh in javascript. sometime we does not want to browser refresh using f5 button for our web page. so you can disable f5 key in jquery. we can easily disable f5 button using javascript with example.

we will disable f5 key using keydown event of jquery. as we know f5 key code is a 116, so basically if user will press 116 event.keyCode then we will simply preventDefault with return false.

we can simply write this code:

$(document).ready(function() {

$(window).keydown(function(event){

if(event.keyCode == 116) {

event.preventDefault();

return false;

}

});

});

You can see bellow full example and demo file how it's disabled f5 refresh button. let's see code:

Example:

<!DOCTYPE html>

<html>

<head>

<title>How to disable f5 refresh button using jquery? - ItSolutionStuff.com</title>

<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.4.0/jquery.min.js"></script>

</head>

<body>

<div class="container">

<h1>How to disable f5 refresh button using jquery? - ItSolutionStuff.com</h1>

</div>

<script type="text/javascript">

$(document).ready(function() {

$(window).keydown(function(event){

if(event.keyCode == 116) {

event.preventDefault();

return false;

}

});

});

</script>

</body>

</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 Remove Key Value from Array using JQuery?

Read Now →

How to Get Selected Radio Button Value in JQuery?

Read Now →

JQuery Check If Value Exists or Not in Array Example

Read Now →

How to Split String to Array By Comma using JQuery?

Read Now →

Add Edit Delete Table Row Example using JQuery

Read Now →

How to Disable Browser Back Button using JQuery?

Read Now →

How to Get Selected Checkbox Value from Checkboxlist using JQuery?

Read Now →

JQuery Disable Right Click, Cut, Copy and Paste Example

Read Now →

How to Remove Empty or Null Values from Array in JQuery?

Read Now →

JQuery - How to Push Specific Key and Value in Array?

Read Now →

How to Remove All Spaces from String in JQuery?

Read Now →

Laravel 11 JQuery Ajax Pagination Example

Read Now →

How to Add Lazy Loading Image using JQuery?

Read Now →