My input looks like this:
<input type="text" class="noclear form-control" value="" name="" required>
Jquery:
form.find('input[class!="noclear"]').val('');
If I leave the input, just with (class="noclear") works right! But I need to leave this other class (form-control) because it is the formatting of the input.
By logic, it is only to clean the input, where it does not have the class (noclear).