html - Can I change error popups for HTML5 form validation checks -
i developed form html5 validation, , found quite useful , easy previous validation techniques, facing requirement supervisor, dont know possible or not due lack of practical knowledge of html5,
i want change popup text appears around form element when wrong entered like, if enter simple text in email type form element , submit form, there popup around element saying "this must email!"; , not allow submit form until right data entered.
is there way of changing text???
yes, can changes using jquery , come css like. can use plugins if like.
<form class="example"> <div> <label for="your-name">name: *</label> <input type="text" required="required" id="your-name" name="yourname" /> </div> <div> <input type="submit" /> </div>
Comments
Post a Comment