jQWidgets Forums

jQuery UI Widgets Forums Dialogs and Notifications Window Window keyboard navigation

This topic contains 1 reply, has 1 voice, and was last updated by  ales 11 years ago.

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
  • Window keyboard navigation #55769

    ales
    Participant

    Is it possible to add handlekeyboardnavigation function to the window? I would like to add custom reaction to some keyboard shortcuts when the window is focused.

    Window keyboard navigation #55770

    ales
    Participant

    I did the following and it works fine:

    $("#selectWindow").keydown (function (event) {
       if (event.which == 13)  // Enter
         alert('hi');
    });

    You do not need to respond to this question. Thanks.

Viewing 2 posts - 1 through 2 (of 2 total)

You must be logged in to reply to this topic.