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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 18, 20262026-06-18T00:15:21+00:00 2026-06-18T00:15:21+00:00

I would like to create a function in jquery where, if a input text

  • 0

I would like to create a function in jquery where, if a input text box has content, check the checkbox. if it is blank, uncheck the checkbox.

<form>
<input class="boxcheck" type="checkbox">
checkbox

<input class="boxtext" type="text">
text here 
</form>

The checkbox and the text input will in the beginning be empty but if a user decides to write something into the text box, the checkbox should be automatically checked if it isn’t checked already by the user.

One other issue might be that a user will type something and this function will check the checkbox, but if a user goes back to the input box and deletes the contents in the input box, the checkbox should be unchecked automatically also.

Last problem I can think of would be if the user writes something into the text box, and this function checks the checkbox but the user for some odd reason unchecks the box, would it be possible to force check the checkbox again?

I have been playing around with the keyup and prop triggers but I am having absolutely no luck. I am also very new to JavaScript.

The code I’ve been playing around is something like:

    $('input[text]').keyup(function(){
    if (this.value.length > 0) {
       $('input[name="checkbox"]').prop('disabled', false)
    } else {
})  
  • 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-18T00:15:22+00:00Added an answer on June 18, 2026 at 12:15 am

    I’d suggest handling the blur event in addition to keyup, because that covers any cases where the user changes the textbox value without the keyboard (copy/cut/paste/drags’n’drops/etc.), without needing to worry about which browsers do or don’t let you handle clipboard events:

    $(document).ready(function() {
        $("input.boxtext").on("keyup blur", function() {
            $("input.boxcheck").prop("checked", this.value != "");
        });
    
        // don't allow user to manually change the checkbox
        $("input.boxcheck").click(function() {
            return false;
        });
    });
    

    Demo: http://jsfiddle.net/WTVEn/

    Note that although I’ve included code that stops the user changing the checkbox, if it can’t be manually edited why do you need the checkbox at all?

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

Sidebar

Related Questions

I would like to create a jQuery function that I can attach to form
I have a jsfiddle here - http://jsfiddle.net/9kKXX/20/ My jQuery function $(function() { $('form input[type=text]').live('keyup',
I would like to create a function that can deal with an object that
I would like to create a function that will return list of type that
I would like to create a function that checks if a numeric value passed
I would like to create an auto increment function that allows me to maintain
I would like to create some sort of function where you pass in a
I have a cell array of anonymous function handles, and would like to create
I would like to know how to create a php function that can be
I'm trying to use the header() function to create a redirect. I would like

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.