PHPIntermediate

Getting Checkbox Values in jQuery

PB Pb28 Master Team July 12th, 2022 Intermediate

📦 Get the complete source code for this tutorial

In HTML Form, the dropdown, checkbox type fields have an array of values. In this post, we are going to see how to get the array of selected values from these form fields using jQuery.

In this example, we are using jQuery each() to get each checked value in an array. Then these array values will be shown using a Javascript alert box. This will be used to validate the checkbox field.

View Demo

Creating HTML Form with Checkboxes

This HTML shows a form containing a list of languages with checkbox field.

getting-checkbox-values-in-jquery

html
<form name="matching_Form" id="matching_Form" action="" method="post">

	<table border="0" cellpadding="10" cellspacing="1" width="500"

		align="center">

		<tr class="tableheader">

			<td>Languages Known</td>

		</tr>

		<tr class="tablerow">

			<td><input type="checkbox" name="language" id="language1"

				value="English">English<br /> <input type="checkbox" name="language"

				id="language2" value="French">French<br /> <input type="checkbox"

				name="language" id="language3" value="German">German<br /> <input

				type="checkbox" name="language" id="language4" value="Latin">Latin<br />

			</td>

		</tr>

		<tr class="tableheader">

			<td><input id="btnSubmit" type="button" value="Submit" /></td>

		</tr>

	</table>

</form>

Getting Checked Values using jQuery

This jQuery script is used to get the checked value from the form checkbox field using jQuery each(). Using this jQuery function it runs a loop to get the checked value and put it into an array. Then the selected values with the count will be shown using an alert box.

javascript
$(document).ready(function() {

	$("#btnSubmit").click(function() {

		var selectedLanguage = new Array();

		$('input[name="language"]:checked').each(function() {

			selectedLanguage.push(this.value);

		});

		alert("Number of selected Languages: " + selectedLanguage.length + "\n" + "And, they are: " + selectedLanguage);

	});

});

View Demo

📦 Download the full project files and try it locally