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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 1, 20262026-06-01T14:52:57+00:00 2026-06-01T14:52:57+00:00

My problem is that when the checkbox below is clicked – the check function

  • 0

My problem is that when the checkbox below is clicked – the check function is called to check/uncheck all the checkboxes. But they have to change relatively to the invoking checkbox (the one with the “onchange” event).

The checkbox HTML declaration:

<input type="checkbox" onchange="$('input[type=checkbox][rel=users]').check();">

Sample JavaScript Code:

$.fn.check = function() {
    $(this).each(function(){
        $(this).attr('checked', checked);
    });
}

And my question is: How can I get the DOM object corresponding to the “check all” checkbox?

  • 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-01T14:52:58+00:00Added an answer on June 1, 2026 at 2:52 pm

    Edit: Pass the this object of the checkAll to the function.

    DEMO

    <input type="checkbox" 
       onchange="$('input[type=checkbox][rel=users]').check(this);" />
    

    Note the this is passed as .check(this)

    And in the JS:

    $(document).ready(function() {
        $.fn.check = function(orgEl) {
            $(this).each(function() {
                $(this).attr('checked', orgEl.checked);
            });
        }
    });
    

    Old Post –

    Bind the checkAll checkbox to an handler and call the fxn from inside.. See below,

    HTML

    <input type="checkbox" id="checkAll" >
    

    JS

       $(document).ready (function () {
           $('#checkAll').click (function () {
              //this inside is checkAll checkbox object.
              $('input[type=checkbox][rel=users]').check();
           });
       });
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a (big) problem that all of you that work with Webforms might
(I have a problem that I illustrated in this question but had no correct
i have a problem on below image: I have detailsview, but i can't show
I have problem removing rows from a table according to the checkbox. Below is
I've been working on this application but have come across a problem that I
I have a problem to manipulate checkbox values. The ‘change’ event on checkboxes returns
The problem that I have is somehow very specific. I have to implement a
I have a strange problem that is only happening in a single location. I
Ok I have this problem that I've never had before, it's really bugging me.
I'm facing a problem that seems to have no straighforward solution. I'm using java.util.Map

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.