If you uncheck this box, it will not be sent along with the rest of the form:
$('#myInp').attr("disabled", true);
Using this method, you can turn off the item while sending and turn it back on immediately after:
$('#myForm').submit(function() { var $myInp = $('#myInp'); $myInp.attr("disabled", true); window.setTimeout(function () { $myInp.attr("disabled", false); }, 0); });
source share