Changes between Initial Version and Version 1 of Ticket #25100, comment 4
- Timestamp:
- 01/07/2014 02:14:03 PM (11 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #25100, comment 4
initial v1 1 1 So is JQuery a realistic answer here? I'd appreciate feedback before giving this a shot. I see a possibility for a patch based on the format of the code below, swapping out the alert for an appropriate focus. (The source of the example below is found here: http://stackoverflow.com/questions/7465006/differentiate-between-mouse-and-keyboard-triggering-onclick) 2 2 3 {{{ 4 #!javascript 3 5 jQuery(function($) { 4 6 $("a#foo").keydown(function() { … … 10 12 }) 11 13 }) 14 }}}