Skip to content

Instantly share code, notes, and snippets.

@ludo6577
Created December 16, 2014 15:59
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ludo6577/07fc6ac9750606f3ee79 to your computer and use it in GitHub Desktop.
Save ludo6577/07fc6ac9750606f3ee79 to your computer and use it in GitHub Desktop.
Tricks: Disable F5, resizing, scrollbars
//Disable F5
$(document).on("keydown", function disableF5(e) {
if ((e.which || e.keyCode) == 116) e.preventDefault();
});
//Disable resizing
var size = [window.outerWidth, window.outerHeight];
$(window).resize(function () {
window.resizeTo(size[0], size[1]);
});
//Remove scroll bars
$("body").css("overflow", "hidden");
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment