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

  • SEARCH
  • Home
  • 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 7943585
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 4, 20262026-06-04T00:18:47+00:00 2026-06-04T00:18:47+00:00

I am new to jQuery and haven’t been able to find a solution to

  • 0

I am new to jQuery and haven’t been able to find a solution to this.

I have this HTML:

<input type="text" id="Box1" /><br />
<input type="text" id="Box2" />

And jQuery:

$("#Box1").keydown(function () {
    $("#Box2").val("");
});
$("#Box2").keydown(function () {
    $("#Box1").val("");
});

Example here: http://jsfiddle.net/tv4my/

When you type in “Box1” then start typing in “Box2”, Box1’s content is cleared. This is good, however I don’t want this function to run if the Tab key is pressed, i.e. I don’t want Box1 to be cleared if I press the Tab key inside Box2. How do I write this in jQuery?

  • 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-06-04T00:18:48+00:00Added an answer on June 4, 2026 at 12:18 am

    You need to check the key used to initiate the event:

    $("#Box1").keydown(function (e) {
        // If the pressed key is not tab (9) then reset Box2
        if(e.keyCode !== 9){
            $("#Box2").val("");
        }
    });
    $("#Box2").keydown(function (e) {
        // If the pressed key is not tab (9) then reset Box1
        if(e.keyCode !== 9){
            $("#Box1").val("");
        }
    });
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

hey people I'm new at jquery and i have been trying to figure this
I am new to jquery and javascript so I haven't been able to figure
I'm new to jQuery and I want to have a input box from a
Textbox refers to <input type=text> in this question. For each textbox with a given
I have been testing the new deferred AJAX functions in jquery 1.5 and am
I haven't been able to figure this out despite hours of messing around, hopefully
I am new to jQuery and have run into a problem. I have a
I am somewhat new to jQuery and I have a problem with something I
I have application that brings response via Ajax and creates 5-20 new jQuery click
I'm new to JQuery and was wondering how can I have Changes saved! displayed

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.