Skip to content

Instantly share code, notes, and snippets.

@svinkle
Last active May 23, 2020 01:24
Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save svinkle/a429c127db5358ec0bd8b42ab6c9ee78 to your computer and use it in GitHub Desktop.
Save svinkle/a429c127db5358ec0bd8b42ab6c9ee78 to your computer and use it in GitHub Desktop.

Safari Keyboard Navigation

In order to allow for full keyboard navigation of all element in Safari on macOS, make sure the following options are enabled.

All Controls in macOS

In the macOS settings, allow "All Controls" to be keyboard accessible. Enable this feature by going to:

  1. Settings
  2. Keyboard
  3. Shortcuts (tab)
  4. Select "All controls" (radio button)

Screenshot of the macOS Settings window. The screenshot is highlighting the selection of the 'All controls' radio button.

Highlight each item in Safari

In Safari settings, allow "highlighting of each item" in order to Tab to page controls. Enable this feature by going to:

  1. Preferences
  2. Advanced (tab)
  3. Select "Press Tab to highlight each item on a webpage" (checkbox)

Screenshot of the Safari Preferences window. The screenshot is highlighting the selection of the 'Press Tab to highlight each item on a webpage' checkbox.

With these changes in place you should now be able to use the Tab key to navigate around page content as expected.

Enable via Terminal

Run the folliowing command the Terminal to enable keyboard control at the macOS level. Helpful if your organization uses a config script for new employee machines!

defaults write NSGlobalDomain AppleKeyboardUIMode -int 3
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment