Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

Is there a JavaScript library that, when the user holds down ctrl/alt, will display tooltips over elements on the page that have associated keyboard shortcuts that use that key?

share|improve this question
1  
A browser extension perhaps? Rather than a "JavaScript library"...? Or is this something you wish to apply to your own website? When you refer to "associated keyboard shortcuts", are you referring to AccessKeys, or something more? – w3d Jul 10 '12 at 16:13
It's a web app, and it probably would have to work with AccessKeys – Sam Hasler Jul 10 '12 at 16:15
@w3d Thanks for the AccessKeys hint. I was able to find something that does what I'm after. – Sam Hasler Jul 10 '12 at 16:23
Are you wanting to do this for your site or do it within your browser? I know Opera does this automatically. – Ryan B Jul 13 '12 at 17:14
@RyanB this is a for a B2B web app. – Sam Hasler Jul 18 '12 at 9:20

migrated from webapps.stackexchange.com Jul 13 '12 at 14:58

2 Answers

This is what I was looking for: KeyCandy. Although I'll have to fix the flicker when Ctrl is held down.

I knew I'd seen something like this before. Not sure if it's the same one. Anyone got a better one?

share|improve this answer
FWIW 2 issues: 1- The keyCandy Demo does not seem to work in IE8. 2- be very careful relying on accessKeys, browser hotkeys overrule AccessKeys, and if the user is using assistive technology, then those have precident. The UK Gov standard is the closest thing to a standard set of AccessKeys. – Ryan B Jul 13 '12 at 17:08

I think KeyTips is the one I'd seen before. It's certainly looks better than KeyCandy, although I like how KeyCandy makes Ctrl the modifier for accesskeys.

There are some issues with browser reserved shortcuts but as this is an internal intranet site if I make it a hosted app for chrome it would be able to handle any shortcut

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.