The code below works well in Safari but in Chrome and Firefox the form will not submit. Chrome console logs the error An invalid form control with name=\'\' is not fo
I have to do something like this to fix the bug, since I have some type="number" with min="0.00000001":
$('input[type="submit"]').click(function(e) {
//prevent chrome bug
$("input:hidden").val(null);
});
If I don't set all hidden input field to null chrome will still try to validate the input.