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 Dev

Updating payment method email addresses in Stripe

You can't update the email address associated with a payment method in Stripe via their dashboard, you need to use the Stripe CLI

Ruby

Irreversible Rails Migrations

What are irreversible migrations and how might we use them to our advantage?