DEV Community

Cover image for How To Loop Checkbox Checked Value in jQuery
Code And Deploy
Code And Deploy

Posted on • Edited on

6 3

How To Loop Checkbox Checked Value in jQuery

Originally posted @ https://codeanddeploy.com visit and download the sample code: https://codeanddeploy.com/blog/jquery/how-to-loop-checkbox-checked-value-in-jquery

Advanced Laravel SAAS Starter Kit with CRUD Generator

Advanced Laravel SAAS Starter Kit with CRUD Generator - GET YOUR COPY NOW!

In this post, I will share on how to loop the checkbox checked value using jquery. One of the important to learn when processing the form about getting checked the multiple value of checkbox and submit it to your server-side using ajax.

how-to-loop-checkbox-checked-value-in-jquery

As you can see above example we have the list of animals and we will display the result after we select and submit the button. After submitting the button this is the result now.

how-to-loop-checkbox-checked-value-in-jquery

As you can see we listed the checked animals. Now let's see the complete code of this function.

You must check each comment so that you know how it works.



<!DOCTYPE html>
<html>
<head>
    <meta charset="utf-8">
    <title>Loop Checkbox Value in jQuery</title>

    <style type="text/css">
        .result-wrapper {
            display: none;
        }
    </style>
</head>
<body>
    <form>
        <label>What animals you have at home?</label>

        <div>
            <input type="checkbox" name="animals" class="animals" value="Dog"> Dog
        </div>
        <div>
            <input type="checkbox" name="animals" class="animals" value="Cat"> Cat
        </div>
        <div>
            <input type="checkbox" name="animals" class="animals" value="Pig"> Pig
        </div>
        <br/>
        <button type="button" id="submit">Submit</button>
    </form>

    <div class="result-wrapper">
        <h3>Result:</h3>
        <div id="result"></div>
    </div>

    <script
  src="https://code.jquery.com/jquery-3.6.0.min.js"
  integrity="sha256-/xUj+3OJU5yExlq6GSYGSHk7tPXikynS7ogEvDej/m4="
  crossorigin="anonymous"></script>

  <script type="text/javascript">
    $(document).ready(function() {

        $("#submit").on("click", function() {
            // define the checkbox using name="animals"
            // note: you can do it with class also like this $('.animals')
            var animals = $('[name="animals"]');

            // define html variable to store the result
            var html = "<ul>";

            $.each(animals, function() {
                var $this = $(this);

                // check if the checkbox is checked
                if($this.is(":checked")) {
                    // put the checked animal value to the html list
                    html += "<li>"+$this.val()+"</li>";
                }
            }); 
            html += "</ul>";

            // put the result in #result element
            $(".result-wrapper #result").html(html);

            // show the result-wrapper class element
            $(".result-wrapper").show();
        });


    });
  </script>
</body>
</html>


Enter fullscreen mode Exit fullscreen mode

Advanced Laravel SAAS Starter Kit with CRUD Generator

Advanced Laravel SAAS Starter Kit with CRUD Generator - GET YOUR COPY NOW!

I hope this tutorial can help you. Kindly visit here https://codeanddeploy.com/blog/jquery/how-to-loop-checkbox-checked-value-in-jquery if you want to download this code.

Happy coding :)

SurveyJS custom survey software

JavaScript UI Libraries for Surveys and Forms

SurveyJS lets you build a JSON-based form management system that integrates with any backend, giving you full control over your data and no user limits. Includes support for custom question types, skip logic, integrated CCS editor, PDF export, real-time analytics & more.

Learn more

Top comments (0)

A Workflow Copilot. Tailored to You.

Pieces.app image

Our desktop app, with its intelligent copilot, streamlines coding by generating snippets, extracting code from screenshots, and accelerating problem-solving.

Read the docs

AWS Security LIVE!

Hosted by security experts, AWS Security LIVE! showcases AWS Partners tackling real-world security challenges. Join live and get your security questions answered.

Tune in to the full event

DEV is partnering to bring live events to the community. Join us or dismiss this billboard if you're not interested. ❤️