i am using a timer on my php page but when some refresh the page the timer start from begin. i want to disable f5 or reload option on my php page.
Thanks in advance
I test it and it works.
function disable_f5(e)
{
if ((e.which || e.keyCode) == 116)
{
e.preventDefault();
}
}
$(document).ready(function(){
$(document).bind("keydown", disable_f5);
});
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With