How to suppress chrome help on F1

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.

  1.  $("body").on("keydown", function(e) {                    
  2.      e.preventDefault();                                  
  3.      var keyCode = (window.event) ? e.which : e.keyCode;  
  4.                                                           
  5.      switch(keyCode) {                                    
  6.      case "112":                                          
  7.           clickMove('RFE');                               
  8.           alert("RFE");                                   
  9.           break;                                          
  10.      case "113":                                          
  11.           clickMove('DFI');                               
  12.           alert("DFI");                                   
  13.           break;                                          
  14.      case "114":  
  15.     and on and on ...
  16.