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 9164207
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 17, 20262026-06-17T14:37:35+00:00 2026-06-17T14:37:35+00:00

I have need to do two things on a single DOM event I tried

  • 0

I have need to do two things on a single DOM event

I tried using this but it won’t work.

HTML

<input type="test" name="box" id="box" onkeyup="keyPressedBox(this)">
<input type="test" name="name" id="name" onkeyup="keyPressedName(this)">

<input type="checkbox" class="form-checkbox" checked="checked" id="sdp_1" name="sdp_1" />
<input type="checkbox" class="form-checkbox" checked="checked" id="sdp_2" name="sdp_2"/>

Javascript

<script>
     function keyPressedName(str) {
        if ($(str).val() != '') {
            $('#sdp_2').prop('checked', false);
        } else {
            $('#sdp_2').prop('checked', true);
        }

        return true;
    }

    function keyPressedBox(str) {
        if ($(str).val() != '') {
            $('#sdp_1').prop('checked', false);
        } else {
            $('#sdp_1').prop('checked', true);
        }
        return true;
    }


</script>

Any Ideas ?

  • 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-17T14:37:36+00:00Added an answer on June 17, 2026 at 2:37 pm

    Do something like this

    onkeypress="keyPressed();"
    

    And keyPressed. Have 2 functions in both input box. functions will be,

    <script src="http://code.jquery.com/jquery-latest.js"></script>
    <script>
            function keyPressedName(str) {
                if ($(str).val() != '') {
                    $('#sdp_2').prop('checked', false);
                } else {
                    $('#sdp_2').prop('checked', true);
                }
    
                return true;
            }
    
            function keyPressedBox(str) {
                if ($(str).val() != '') {
                    $('#sdp_1').prop('checked', false);
                } else {
                    $('#sdp_1').prop('checked', true);
                }
                return true;
            }
    
        </script>
    

    HTML will be

    <input type="test" name="box" id="box" onkeyup="keyPressedBox(this)">
    
    <input type="test" name="name" id="name" onkeyup="keyPressedName(this)">
    

    JS FIDDLE

    http://jsfiddle.net/RMEKh/2/

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

Sidebar

Related Questions

I have two things I need this for, these should explain what I mean:
I have a list of two-item lists and need to search for things in
I have got two models, User and Event. I need two kind of relationship
I need to have two UITableViews on one UIView. I can make it work
I have two things I need to do in Cake 2.2. I need to
I have a bunch of XSD's from https://github.com/XeroAPI/XeroAPI-Schemas/tree/master/v2.00 I need to do two things:
I have a need for two slightly different classes, that have the same members,
I have need for a function pointer that takes two arguments and returns a
I have a Maven multi-module project and I need two different parent POMs in
I have a form that has a group of 3 text_fields. I need two

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.