var faults = $('#form'+id+' input').filter(function() {
return $(this).data('required') && $(this).val() === "";
}).css({"box-shadow": "rgb(239, 76, 76) 0px -10px 3px -7px inset"}); // выделяем это поле красным
if(faults.length) {
return false;
}
</body>
div:last-of-type > p:first-of-type {color:red;}