Get multiple check box id in jquery
by satheeshkumar[ Edit ] 2013-10-05 16:45:00
Get multiple check box id in jquery ,
In order to get the multiple check box id's in jquery, set same class name for all the check boxes and unique id's for the each check boxes..
use following jquery code to get checked check box id in jquery,
$('.checkboxclassname:checked').each(function(){
var values = $(this).attr('id');
alert(value)
});