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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 5, 20262026-06-05T09:39:26+00:00 2026-06-05T09:39:26+00:00

Due to some reasons i m dynamically creating a checkbox in a Grid.. Also

  • 0

Due to some reasons i m dynamically creating a checkbox in a Grid..

Also i m dynamically creating a Button in the same Grid.

On this particular button click i need to check if the checkboxes are checked or not.

If the checkboxes are checked i should uncheck it.and vice versa.

Is it possible to achieve this in javascript?

  • 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-05T09:39:29+00:00Added an answer on June 5, 2026 at 9:39 am

    Yes it is possible.

    document.querySelector("button").addEventListener("click",function(){
        [].forEach.call(document.querySelectorAll('input[type="checkbox"]'),function(el){
            el.checked = !el.checked   //Invert
        });​
    }, false);
    

    No matter the checkboxes are created dynamically or not, this code will still work because it does not even need any id or class.

    For IE:

    document.getElementsByTagName("button")[0].addEventListener("click", function(){
        var ele = document.getElementsByTagName("input");
        for(var i=0;i<ele.length;i++){
            if(ele[i].type == "checkbox"){
                el.checked = !el.checked   //Invert
            }
        }
    });
    

    Ultimate jQuery solution!

    $("button").click(function(){
        $("input[type=checkbox]").each(function(){
            this.checked = !this.checked;
        }
    });
    

    LIVE DEMO: http://jsfiddle.net/DerekL/jfeAd/

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

Sidebar

Related Questions

due to some unavoidable reasons I need to disable Google Chrome's Chrome PDF Viewer
I have this cellphone which runs Android OS 2.6. Due to some reasons, I
Due to a recent issue i had some days ago (you can check this
Due to network or some other reasons, some sites do not have their css
I'm having some issues with my code. This is probably due to some design
due to performance reasons we refactored some quick 'n' dirty implementation of our data
Due to validation markup and some other reasons I disable the list-style-type css property
Due to some architectural reasons I have to ignore duplicate values on the index.
Due to some limitations on the place files are being placed, I would like
Due to some rather bizarre architectural considerations I've had to set up something that

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.