Answers for "html5 form validation"

3

change input required text html

<input type="text" id="username" required placeholder="Enter Name"
    oninvalid="this.setCustomValidity('Enter User Name Here')"
    oninput="this.setCustomValidity('')"  />
Posted by: Guest on June-18-2020

Browse Popular Code Answers by Language