jquery code to detect ctrl+F1 key

jQuery(document).keydown(function(event){
      if(event.keyCode==17)
          {
          jQuery(document).one("keyup",function(e){
          if(e.keyCode==112)
              $("#addSession").click();
          });
          }
  });

Comments

Popular posts from this blog

Spring Security ACL