Created
July 17, 2018 06:22
-
-
Save kartick14/61e3f5afa1426fd998f35be6b2c758a3 to your computer and use it in GitHub Desktop.
How to change the default message of the required field in the popover of form-control in bootstrap?
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<input class="form-control" type="email" required="" placeholder="username" | |
oninvalid="this.setCustomValidity('Please Enter valid email')" | |
oninput="setCustomValidity('')"></input> | |
<!-- Ref site: https://stackoverflow.com/questions/24391078/how-to-change-the-default-message-of-the-required-field-in-the-popover-of-form-c/24392931 --> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment