In IE, F1 opens a help window in addition to the in-game console. This snippet will disable the default behavior for F1 in IE: Code: window.onhelp = function() { return false; } source: http://stackoverflow.com/questions/...ny-browser-f1-keypress-displays-your-own-help edit: I already tested this through the browser console, and it works