I have created a SAVE FOR LATER button:
I have it removing required fields so the form will save without all required fields filled in. It creates a new task to the same user.
//When saving for later, removing required fields
$('.Reject').click(function() {
$('*[required]').each(function() {
$(this).removeClass('required')
$(this).removeAttr('required');
});
});
Here's my issue ... I do have some field validations. In the example below, if there is an Invalid input, it won't let me save the form:
How do I get around that?