How can I get the value of checkboxes which are selected using jquery? My html code is as follows:
You can get them like this
$('#save_value').click(function() { $('.ads_Checkbox:checked').each(function() { alert($(this).val()); }); });
jsfiddle