1👍
Use Jquery and ajax request to pass data to view:
$("checkbox").change(function(){
$.post("path/to/url",
{
checkBoxValue: $("#CheckboxID").val()
}
});
Source:stackexchange.com
1👍
Use Jquery and ajax request to pass data to view:
$("checkbox").change(function(){
$.post("path/to/url",
{
checkBoxValue: $("#CheckboxID").val()
}
});