Select checkbox from a list of form controls in jQuery

Description

The following code shows how to select checkbox from a list of form controls.

Example


<html>
<head>
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<script type="text/javascript">
$(document).ready(function(){<!--from  www .j ava  2 s  .c o m-->
var input = $("input:checkbox");
$("div").text(input.length);
});
</script>
</head>
<body>
<form><input type="checkbox" /></form>
<div></div>
</body>
</html>

Click to view the demo

The code above generates the following result.

Select checkbox from a list of form controls in jQuery
Home »
  Javascript Tutorial »
    jQuery »
      jQuery Form
...
Get selected items from form select control...
Get single selected value from select in jQ...
Get text from button and set the value to i...
Get text value from a button and set it to ...
Get the input value of the first matched se...
Get value for each form element in jQuery
Handle focus event fired when an element re...
Handle form input Text box selected event i...
Handle form input Text input change event i...
Handle form inut key up event in jQuery
Hide all the input elements within a form i...
Invoke Submit Event in jQuery
Make a form input text element editable and...
Pre-select multiple select option in jQuery
Pre-select options in form select element i...
Preselect checkbox in jQuery
Preset form radio button in jQuery
Select all selected items from form select ...
Select checkbox from a list of form control...
Select checked checkbox in jQuery
Select disabled button and get the its next...
Select form button and check element list l...
Select form file input field in jQuery
Select form image control in jQuery
Select form input text in jQuery
Select form password field in jQuery
Select form radio button in jQuery
Select hidden form fields in jQuery
Select reset button from form in jQuery
Select submit button in jQuery
Set focus to text box in jQuery
Set multiple value selected for select elem...
Set value for form input element in jQuery
Set value for form radio buttons, checkboxe...
Set value for input text element in jQuery
Set value for selected form input in jQuery
Set value to disabled form field in jQuery
Trigger focus event for input element in jQ...
...