Answers for "set custom validity works once but displays default value"

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

Code answers related to "set custom validity works once but displays default value"

Browse Popular Code Answers by Language