I have an email input
<div class="mb10">
<label class="control-label">Email</label>
<input id="email" type="email" class="form-control" placeholder='Email' name="email" required >
</div>
It worked on most of the broswer except on Safari on iPad 3.
Is it because of the HTML5 ? Should I use JS in stead ?
$("[name='email']").required = true;
How do I solve this issue ?