Sprawdź, czy wymagane jest wejście jQuery
$('form#register').find('input').each(function(){
if(!$(this).prop('required')){
console.log("NR");
} else {
console.log("IR");
}
});
Kamran Taghaddos