×

Welcome to TagMyCode

Please login or create account to add a snippet.
0
0
 
0
Language: Javascript
Posted by: Gábor Papp
Added: Oct 12, 2018 8:41 AM
Views: 3467
Tags: no tags
  1. $(document).keydown(function(e){
  2.         if((e.ctrlKey && e.altKey && e.keyCode==68) || e.keyCode==118) { // CTRL + ALT + D  vagy F7
  3.                 alert('CTRL+ALT+D vagy F7');
  4.         }
  5. });