Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6897453
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T07:10:15+00:00 2026-05-27T07:10:15+00:00

<body> <div>Sample div</div> <input type=’text’/> </body> $(document).delegate(‘body *:not(input)’, ‘keyup’, function(e){ if((e.keyCode || e.which) ==

  • 0
<body>
  <div>Sample div</div>
  <input type='text'/>
</body>

$(document).delegate('body *:not(input)', 'keyup', function(e){
    if((e.keyCode || e.which) == 39){ //right arrow
        $('#next_image').click();
    }
    if((e.keyCode || e.which) == 37){ //left arrow
        $('#prev_image').click();
    }
}

I’m using jQuery Cycle library to setup slideshow. It’s more like a photo album, where you can use keyboard shortcuts to do some stuff. So, the slideshow is the whole page, which also contains input fields. Hence, when you are writing a text inside of input field and try to move cursor with keyboard (left and right arrow buttons), it would fire the event and scroll to the next/prev image.

Any ideas on how to enable keyup events on everything BUT the input field? Obviously, current selector doesn’t work.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-27T07:10:16+00:00Added an answer on May 27, 2026 at 7:10 am

    If you want to stick with .delegate() instead of the currently-favored .on():

    $(document).delegate(':not(input)', 'keyup', function (e)
    {
        if (e.which === 39) $('#next_image').click();
        else if (e.which === 37) $('#prev_image').click();
    });
    
    • jQuery normalizes key code information, so you only need to check event.which
    • If you did have to check keyCode and which, (e.keyCode || e.which) == 39 would not work properly, since || will evaluate to the first truthy operand, or the second operand if both are falsy. To put it differently: you’d have to check each one separately, like this:

      if (e.which === 39 || e.keyCode === 39)
      
    • It’s generally better to use === instead of ==. See Which equals operator (== vs ===) should be used in JavaScript comparisons?

    doesn’t work… it’s still firing the keyup event inside of <input>

    Ah yes. I’m thinking it’s because of event bubbling.

    I’ve seen it solved using an extra event handler (imgur caption boxes in the gallery):

    $('input').live('keyup', function (e) {
        if(!e.ctrlKey && !e.altKey && !e.metaKey) {
            if(e.keyCode==37 || e.keyCode==39 || e.keyCode==13) {
                e.stopPropagation();
            }
        }
        return true;
    });
    

    http://jsfiddle.net/mattball/DQusL/

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I've a simple code as following: <html> <body> <div id=div1> <input class=input1 type=text value=click
I have this simple jQuery code $(document).ready(function() { $('#test').attr('value','hello world'); $('#test1').text('hello world'); }); And
Simple question. <input type=text value=Some text name=thisname id=thisid /> How can I get the
Consider this simple markup: <body> <div style=border: 2px solid navy; position:absolute; width:100%; height:100%> </div>
how can i convert xpath like /html/body/div[3]/ul/li[1]/a[5] html > body > div[3] > ul
Given: Url - http://www.contoso.com/search.php?q= {param} returns: -html- --body- {...} ---div id='foo'- ----div id='page1'/- ----div
I made this Greasemonkey script: var maxpi = 250; var p1 = /html/body/div/div[2]/div/div[2]/table[2]/tbody/tr[1]/td[11]; var
$(this).parent().parent() .children(this.attr(tagName).toLowerCase()) .css(background-color, yellow); xpath: /html/body/div/table/tr/td/b/a $(this).tagName is Anchor <a> the problem with this
If I have a jQuery .click() event firing for both body and a div,
My div with class name 'header-body-right' doesn't seem to be floating to the left

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.