Make WordPress Core

Changes between Initial Version and Version 1 of Ticket #25100, comment 4


Ignore:
Timestamp:
01/07/2014 02:14:03 PM (11 years ago)
Author:
helen
Comment:

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #25100, comment 4

    initial v1  
    11So 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)
    22
     3{{{
     4#!javascript
    35jQuery(function($) {
    46    $("a#foo").keydown(function() {
     
    1012    })
    1113})
     14}}}