Sai Gopal Wordpress Blog

saigopal wordpress blog

Saigopal's website

Saigopal's website

My Daughter Website

Weebly

Palwow

Freelance Jobs

Thursday, October 28, 2010

F5 key board key disable code using javascript

// F5 key board key disable code using javascript
// refresh button in browser also disabling using this following javascript code
//-------------------------------------------------------------------------------------------------
function disablekeyboardnavigation(e)
{
var input_key = "";


if(window.event) {
input_key = event.keyCode; //IE
} else {
input_key = e.which; //firefox
}
if (input_key == 0 ) //F5
{
alert('This operation is not allowed');
return false;
}


return true;
}
// in html body tag place the following code
// body onLoad="disablekeyboardnavigation(this);"
//-------------------------------------------------------------------------------------------------

No comments: