Key code for Command on OS X

There are a couple of key codes for the OS X Command Key

In JavaScript you often went to detect keypresses, you can do this by listening to keydown or keyup events and seeing which key code.

window.onkeydown = function(ev){ alert (ev.which) }

Will alert out the key code for each key on your keyboard as you press it.

What is interesting to note is that the CMD (command) key on the Mac seems to report a different key code depending on the browser.

  • On Firefox it is 224
  • On Safari and Chrome it is 91.

I thought this was pretty interesting.

Recent posts View all

Web DevProductivity

Keeping on top of website updates

Learn what website updates are, what they entail, why they are important, and how we can help

Freelancing

Getting the most out of your agency

Here are some tips based on years of working with, for, and as an agency on how to get the most out of any work you do.