Is it possible to reassign the end user when checking / unchecking the boxes? How please
I tried redirecting it get methodusing this code
HTML
<form><input type="checkbox" name="fixee" value="true" style="margin-left:40px;margin-right:3px;" /><input type="checkbox" name="nonFixee" value="true" style="margin-left:10px;margin-right:3px;" /></form>
JQuery
$("input[type='checkbox']").change(function () {
if ($("input[name='fixee']").prop('checked') && $("input[name='nonFixee']").prop('checked')) {
alert('2');
}
else if ($("input[name='fixee']").prop('checked') && $("input[name='nonFixee']").prop('checked')) {
alert('3');
}
else{
alert('1');
}
});
http://jsfiddle.net/eKa8S/9/
I code this in Visual Studio ~means the project root folder.
Any brilliant idea please?
source
share