Firefox (OS X) Tip-Of-The-Day: Hacking the tab focus on form elements
This is not CSS, but it does drive me batty when I’m creating forms.
Does this bother you, too? When you tab a form in Firefox (on a Mac) it skips the radio buttons, checkboxes, and select drop-down fields. Hate that!
I recently found the hack to fix this:
If accessibility.tabfocus isn’t in the list (it wasn’t in mine):
BREAKING NEWS:
It turns out this tabbing thing is handicapped by default in Mac OS X. However, changing it is simple through System Preferences > Keyboard & Mouse > Keyboard Shortcuts. At the bottom of that window, it says:
This is not CSS, but it does drive me batty when I’m creating forms.
Does this bother you, too? When you tab a form in Firefox (on a Mac) it skips the radio buttons, checkboxes, and select drop-down fields. Hate that!
I recently found the hack to fix this:
- Type about:config in the URL bar.
- In the Filter field, type tabfocus.
- Double-click on the accessibility.tabfocus preference.
- Change the value to 7.
- Restart your browser and tab away.
If accessibility.tabfocus isn’t in the list (it wasn’t in mine):
- Right-click on Firefox.app and select Show Package Contents
- Open /Contents/MacOS/greprefs/all.js
- Insert pref("accessibility.tabfocus", 7); (I put it where all the other accessibility prefs were declared)
- Restart your browser and tab away.
BREAKING NEWS:
It turns out this tabbing thing is handicapped by default in Mac OS X. However, changing it is simple through System Preferences > Keyboard & Mouse > Keyboard Shortcuts. At the bottom of that window, it says:
So there. Just check and you’re done. So my question is, why is it handicapped in the first place??Full keyboard access
In windows and dialogs, press Tab to move the keyboard focus between:[ ] Text boxes and lists only
[ ] All controls
1 Comments:
Because Mac users don't know how to use the keyboard to do things like click the button, only type. So they would be confused if the keyboard accessed a button...
Post a Comment
<< Home