Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Key shortcuts in a web application [closed]

I'm thinking about creating some keyboard shortcuts in my web application. But, most of the important shortcuts are already attached to the browser itself (like F1, F2, Fn; Ctrl + N; Ctrl + P, Alt + P, Alt + A, etc...)

I've notice that the browsers don't use any Shift combination. But, Shift is already reserved to type uppercase letters, so, I think using Shift + Key combinations isn't a good idea.

Are there some guidelines to write keyboard shortcuts on the web?

Or, should I give up using it?

like image 218
Daniel Silveira Avatar asked May 26 '09 18:05

Daniel Silveira


People also ask

What is the shortcut key of close and exit?

Press Ctrl+Spacebar. Use the arrow keys to select Close, and then press Enter.

What is the shortcut key to open application?

In the right-click menu, choose Properties. You can also select the shortcut and press Alt + Enter on your keyboard to achieve the same result.


1 Answers

If it's an internal application which a number of people use all day everyday, keyboard shortcuts can increase productivity immensely.

It doesn't matter too much what they are, because advanced users will learn them regardless. The safest ones to use, however, are the arrow keys. Also, Ctrl + + ANY LETTER are usually safe.

If it's an internal application, you also have the luxury (normally) of developing for a set browser/configuration/version. This can make it easier to map out key bindings also.

like image 81
Zack Marrapese Avatar answered Oct 11 '22 11:10

Zack Marrapese