get multiple checkbox value using jQuery

get multiple checkbox value using jQuery

Hello every one, I am going to share the code-sample to get multiple check-box value using MVC 5 and jQuery. The code detail as given below.


MVC 5 Razor code-sample

@{
    var users = new Users().GetDefaultUsers();
}
<div class="demo-section k-content">
    <ul class="fieldlist">
        @if (users != null && users.Count > 0)
        {
            foreach (var user in users)
            {
                <li>   
                    <input type="checkbox" name="checkboxes" value="@user.ID" id="Permission_@user.ID" checked="checked">
                    <label for="Permission_@user.ID">@user.ID</label>
                </li>
            }
        }
    </ul>
</div>

JavaScript code-sample

var user = [];
$(':checkbox:checked').each(function (index) {
     user[index] = $(this).val();
});


Hope this help!




ANIL SINGH

Anil Singh is an author, tech blogger, and software programmer. Book writing, tech blogging is something do extra and Anil love doing it. For more detail, kindly refer to this link..

My Tech Blog - https://www.code-sample.com/
My Books - Book 1 and Book 2

www.code-sample.com/. Powered by Blogger.
^