How does one capture a Mac's Cmd key via JavaScript?
-
6Use this https://github.com/madrobby/keymaster – Alex Craft Jun 14 '12 at 09:10
-
There is a javascript-lib for that: [keymaster.js](https://github.com/madrobby/keymaster) (no dependencies like jquery) – bmaeser Nov 07 '14 at 14:26
10 Answers
EDIT: As of 2019, e.metaKey
is supported on all major browsers as per the MDN.
Note that on Windows, although the ⊞ Windows key is considered to be the "meta" key, it is not going to be captured by browsers as such.
This is only for the command key on MacOS/keyboards.
Unlike Shift/Alt/Ctrl, the Cmd (“Apple”) key is not considered a modifier key—instead, you should listen on keydown
/keyup
and record when a key is pressed and then depressed based on event.keyCode
.
Unfortunately, these key codes are browser-dependent:
- Firefox:
224
- Opera:
17
- WebKit browsers (Safari/Chrome):
91
(Left Command) or93
(Right Command)
You might be interested in reading the article JavaScript Madness: Keyboard Events, from which I learned that knowledge.

- 2,484
- 9
- 20

- 7,874
- 3
- 30
- 30
-
2Know that Opera is now also under the Webkit category. I think just listening for 91, 93, and 224, will get the job done. 17 is Ctrl, by the way. Did old Opera not differentiate Cmd and Ctrl?? – Steven Lu Oct 13 '14 at 16:20
-
66It seems that event.metaKey works in the current versions of Safari, Firefox and Chrome like a charm. IMO it is much clear solution. – Miroslav Nedyalkov Jan 06 '15 at 07:04
-
9In response to Miroslav's comment, just note that it only works on **`keydown`** events, not `keyup`. – nachocab Jan 15 '18 at 14:41
-
3In response to @nachocab 's comment: e.key === 'Meta' works for both keydown and keyup. So this can be used instead of e.metaKey – Heribert May 12 '21 at 14:28
-
@nachocab You helped me a lot with comment about keydown / keyup . Because I was stuck in keypress event not understanding, what is wrong with it)) – PokatilovArt Nov 18 '22 at 13:09
You can also look at the event.metaKey
attribute on the event if you are working with keydown
events. Worked wonderfully for me! You can try it here.

- 5,825
- 2
- 31
- 41
-
That doesn't seem to be set for me with Firefox 4.0.1 on MacOS. Given that the accepted answer and the linked reference both disagree with what you've said as well, I think this answer is incorrect. – Josh Glover Jun 13 '11 at 15:46
-
The accepted answer gives another, more painful, way to make it work, while the linked reference says that "According to the DOM 3 standard, on the Macintosh, the Option key should activate event.altKey and the Command key should activate event.metaKey. These attributes seem to work correctly on all modern browsers tested" ! The answer works for me under Firefox 5.0 on MacOS. I'll try and test it in older versions. – Sunny Jul 06 '11 at 20:56
-
Also, the accepted answer wrongly says that "Mac/Apple key is not considered as a modifier key", even though the given reference says the contrary ! [Here is a script](http://edit.sunfox.org/metakey.html) that shows the `.metaKey` modifier working under Mac Firefox 3.6.3 -> 5.0. – Sunny Jul 07 '11 at 08:44
-
8`.metaKey` indeed works in latest Firefox, Safari and Opera. In Chrome, `.metaKey` triggers on Control (not on Command). – Ilya Semenov Nov 16 '11 at 13:23
-
1FWIW, cmd+e doesn't work for me in your script. Ctrl triggers the CMD icon you have – Oscar Godson Mar 17 '12 at 15:42
-
1cmd+e doesn't fire the event for me either (chrome). ctrl+e does. – Spencer Williams May 24 '12 at 22:22
-
28I think the trick (even in Chrome) is that this works for `keydown` but NOT for `keyup` or `keypress`. – philfreo Aug 06 '12 at 18:29
-
You are right @philfreo, tested here in Chrome. I updated the answer and [the example](http://edit.sunfox.org/metakey.html) accordingly. – Sunny Aug 20 '12 at 12:56
-
You might want to add a call to event.preventDefault() to prevent the browser and/or OS from processing the command key. – bsegraves Sep 05 '14 at 15:00
I found that you can detect the command key in the latest version of Safari (7.0: 9537.71) if it is pressed in conjunction with another key. For example, if you want to detect ⌘+x:, you can detect the x key AND check if event.metaKey is set to true. For example:
var key = event.keyCode || event.charCode || 0;
console.log(key, event.metaKey);
When pressing x on it's own, this will output 120, false
. When pressing ⌘+x, it will output 120, true
This only seems to work in Safari - not Chrome

- 1,084
- 6
- 7
Basing on Ilya's data, I wrote a Vanilla JS library for supporting modifier keys on Mac: https://github.com/MichaelZelensky/jsLibraries/blob/master/macKeys.js
Just use it like this, e.g.:
document.onclick = function (event) {
if (event.shiftKey || macKeys.shiftKey) {
//do something interesting
}
}
Tested on Chrome, Safari, Firefox, Opera on Mac. Please check if it works for you.

- 2,012
- 3
- 29
- 37
keyCode
and which
are now deprecated so it's advisable to avoid the answers that use those here.
One way to do this now is using the key
property on the event argument that comes with DOM keyup
and keypress
events. Here's a simple example of how to do it:
document.onkeypress = (event) => {
if (event.key === 'Meta') {
console.log("Mac or Windows key was pressed!");
} else {
console.log("Another key was pressed")
}
}
This will trigger on the cmd key press on Mac (See Meta on the MDN docs). The only thing to note here is it will also trigger on the Windows key press too for the users keyboard/OS that support it.
If you need more granular understanding of which Meta key has been pressed, you can use the code
property on event which can be either MetaLeft
or MetaRight
depending on which physical meta key ( cmd) was pressed.

- 879
- 2
- 11
- 16
For people using jQuery, there is an excellent plugin for handling key events:
For capturing ⌘+S and Ctrl+S I'm using this:
$(window).bind('keydown.ctrl_s keydown.meta_s', function(event) {
event.preventDefault();
// Do something here
});
-
1
-
-
1If you visited the link in my answer, you would've known: https://github.com/tzuryby/jquery.hotkeys#jquery-compatibility – Koen. Feb 12 '15 at 14:31
Here is how I did it in AngularJS
app = angular.module('MM_Graph')
class Keyboard
constructor: ($injector)->
@.$injector = $injector
@.$window = @.$injector.get('$window') # get reference to $window and $rootScope objects
@.$rootScope = @.$injector.get('$rootScope')
on_Key_Down:($event)=>
@.$rootScope.$broadcast 'keydown', $event # broadcast a global keydown event
if $event.code is 'KeyS' and ($event.ctrlKey or $event.metaKey) # detect S key pressed and either OSX Command or Window's Control keys pressed
@.$rootScope.$broadcast '', $event # broadcast keyup_CtrS event
#$event.preventDefault() # this should be used by the event listeners to prevent default browser behaviour
setup_Hooks: ()=>
angular.element(@.$window).bind "keydown", @.on_Key_Down # hook keydown event in window (only called once per app load)
@
app.service 'keyboard', ($injector)=>
return new Keyboard($injector).setup_Hooks()

- 1
- 1

- 4,161
- 2
- 31
- 49
var element = //the DOM element to listen for the key on.
element.onkeyup = function(e) {
if(e.metaKey) {
//command key was pressed
}
}

- 161,348
- 33
- 346
- 320
-
var element = document.body; element.onKeyUp = function(e) { if(e.metaKey) { console.log('cmd pressed') } } – DataGreed Oct 13 '10 at 13:11
This show capture the mac command and windows ctrl
#Mac command
$("#my_input").on('change keyup input', function() {
var e = window.event || e; var key = e.keyCode; if(key == 93) {
alert("Hello");
}
});
#Windows ctrl
$("#my_input").on('change keyup input', function() {
var e = window.event || e; var key = e.keyCode; if(key == 17) {
alert("Hello");
}
});
#Both
$("#my_input").on('change keyup input', function() {
var e = window.event || e; var key = e.keyCode; if(key == 17 || key == 93) {
alert("Hello");
}
});

- 74
- 8
if you use Vuejs, just make it by vue-shortkey plugin, everything will be simple
https://www.npmjs.com/package/vue-shortkey
v-shortkey="['meta', 'enter']"·
@shortkey="metaEnterTrigged"

- 803
- 1
- 6
- 15