I don\'t know how to pass the selected values of the checkboxes. Any help or suggestions will be a big help for me.
As of now here is my code I am stuck in passing th
You can use something like this before your ajax call:
var ids=[];
$('input[type=checkbox]:checked').each(function(){
ids.push($(this).val());
});
But it is strongly recommended to wrap your checkboxes in some div, and represent it in your jquery selector. Because in current way you can select and send to server some other checkboxes on your page.