Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

what are all scenarios through which refresh happen on GUI? And How to prevent any browser refresh function (examples: 'F5' keystroke or refresh icon in screen, etc.... etc.... scenerios)

what I know is this....

document.onkeydown = function() {    
    switch (event.keyCode) { 
        case 116 : //F5 button
            event.returnValue = false;
            event.keyCode = 0;
            return false; 
        case 82 : //R button
            if (event.ctrlKey) { 
                event.returnValue = false; 
                event.keyCode = 0;  
                return false; 
            } 
    }
}

ANY OTHER SUGGESTIONS ?

share|improve this question

1 Answer

You cannot. The refresh action is a browser function, not a page function, so you cannot override it from JavaScript running on a page. Just as an exercise, try figuring out how you would prevent the user from clicking the »Refresh« button (or going through the menu).

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.