I have a form with several inputs. For some reason, I want specific inputs with specific class not be posted when the user submits the form.
I already tried disabling the specific inputs like:
$('.myinputs').each(function (i) {
$(this).prop('disabled', false);
});
This command would disable the inputs, but they still are being posted.
Any hints ?
Thanks