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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 25, 20262026-05-25T10:18:23+00:00 2026-05-25T10:18:23+00:00

Just a simple question. I’m using console.log(jQuery(event.target).is(:checked)); and it returns false everytime. If I

  • 0

Just a simple question.

I’m using

console.log(jQuery(event.target).is(":checked"));

and it returns false everytime.

If I do a console.log(jQuery(event.target)) is prints out the input box, so I know event.target is correct.

I can’t use this here because the jQuery event is bound to a parent div.

Any ideas why this wouldn’t work? Seems easy enough.

EDIT#########################################
Rest of code:

jQuery(".core-create-install-pkg-parent").live("click", function(event){
var cls = jQuery(event.target).attr("type");
if(cls != "checkbox"){
    event.stopPropagation();
    jQuery(".core-create-install-pkg-child:first", this).toggle();
}else{
    console.log(event.target);
    if(jQuery(event.target).is(":checked")){
        console.log("it's checked");
        jQuery("input[type=checkbox]", this).removeAttr('checked'); 
    }else{
        console.log("not checked");
        jQuery("input[type=checkbox]", this).attr("checked", true);
    }
}
});

And the html looks like:

<div class="core-create-install-pkg-parent">
  <div class="core-create-install-pkg-title">
    <input type="checkbox" value="" checked>
    plugins
  </div>
</div>
  • 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-25T10:18:25+00:00Added an answer on May 25, 2026 at 10:18 am

    The problem with this code snipped is that you instantly revert the control after it toggles.

    if (jQuery(event.target).is(":checked")) { //Enters if the checkbox is checked
        console.log("it's checked");
        jQuery("input[type=checkbox]", this).removeAttr('checked'); //Removes the checked attribute, effectively unchecking it
    } else { //Enters if the checkbox is Unchecked
        console.log("not checked");
        jQuery("input[type=checkbox]", this).attr("checked", true); //Sets the checked attribute, checkbox becomes checked again
    }
    

    Also i would recommend the prop method of jquery for testing the checked state (which returns true or false). [requires jQuery 1.6)

    ($(event.target).prop("checked")
    ($(event.target).prop("checked", true)
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Just a simple question, for the jQuery event. Are the .load(), .ready() and .unload()
I just gave an answer to a quite simple question by using an extension
just simple question, recently i have setup a web server to build project using
Just a simple question. (probably really basic I quess) Using XmlHttp I am able
This is just a simple question. I'm currently using Mozilla's Rhino to develop a
Just a simple question about the submit process for AppSore using Xcode 4 (I
I am using as3. Just a simple question. If I created a static method.
Just a simple question for SQLite while using it in Android. I want to
Just a simple question about jQuery. I'm new at it. How would I get
Just a simple question...I'm using Interface Builder for creating my view, and I wonder

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.