Rss Feed
  1. Get checked checkboxes

    Loops through all the checked checkboxes and adds checkbox value to an array using jquery :checkbox selector.


    $(":checkbox:checked").each(
        function() {
            $(this).val();
        }
    );


    Get unchecked checkboxes

    Loops through all the unchecked checkboxes and adds checkbox value to an array.
    $(":checkbox").not(:checked).each(
        function() {
            $(this).val();
        }
    );

    Refer:

  2. 0 comments:

    Post a Comment