Here is my code, in "View" I wrote like this :
JS :
$(document).ready(function()
{
$( ".iCheck-helper" ).on( "click", function(){
console.log($('.i-check:checked').map(function() {
//alert(this.value);
return this.value;
}).get().join(', '));
}) ;
});
I should pass the returned value from this javascript to the controller file.
How can I do this please someone help me...