How to suppress chrome help on F1
Hello,
Im trying to fire a function during an F1 function key.
But Im getting the help screen instead.
- $("body").on("keydown", function(e) {
- e.preventDefault();
- var keyCode = (window.event) ? e.which : e.keyCode;
-
- switch(keyCode) {
- case "112":
- clickMove('RFE');
- alert("RFE");
- break;
- case "113":
- clickMove('DFI');
- alert("DFI");
- break;
- case "114":
- and on and on ...
-