Hi I have the following code for disabling F5
$(document).ready(function(){
 $(window).keydown(function(event){
 if(event.keyCode == 116)
 {
 event.preventDefault();
 return false;
 }
 });
});
But i am unable to resolve to prevent the browser reload.
I am trying to find the solution for disabling the browser reload. And learn in the process.
