This Article will Teach you How you can get Selected Checkbox Values with Comma Seperated in a Variable using Jquery.
Create a new Html File Named test.html and add the below code in that file.
Create a new Html File Named test.html and add the below code in that file.
<!DOCTYPE html>
<html>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.3/jquery.min.js"></script>
<body>
<input type="checkbox" class="form" value="E001" />
<input type="checkbox" class="form" value="E002" />
<input type="checkbox" class="form" value="E003" />
<input type="checkbox" class="form" value="E004" />
<input name="searchDonor" type="button" class="button" value="Get Value" onclick="getvalue()" />
<script>
function getvalue() {
var boxesValue = [];
$('input:checkbox.form:checked').each(function () {
var value = (this.checked ? $(this).val() : "");
boxesValue.push(value);
});
var str = boxesValue.join(",");
alert(str);
}
</script>
</body>
</html>
Now Run This html file.
Click the checkboxes and Click on Get Value Button.
You will get Selected Check box Value.