I have a big form with lot of fields and most of them are required fields. so i wanted to show pop-up alert message saying please fill required field.
<input name="fname" id="fname" type="text" class="form-control" required>
also i m showing usual message below that particular field, i need something like on submit click
If (some fields required field error got triggered )
{
show alert pop-up message ;
}
I am new to this thing so..