I have a form with the fields structured in the following format:
<span class="req">*</span>
<label for="name">Name</label><br>
<input type="text" id="name">
On submit, I would like to mark the empty fields that have an asterisk before them. I assume I can use .each() to loop through my form fields, but how do I target only required fields?