Answers for "how to change @required to required at once"

5

Change the required text

<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
4

how to change input required message

<input class="form-control" type="email"  required="" placeholder="username"
 oninvalid="this.setCustomValidity('Please Enter valid email')"
 oninput="setCustomValidity('')"></input>
Posted by: Guest on December-30-2020

Code answers related to "how to change @required to required at once"

Browse Popular Code Answers by Language