Is it possible to change the text of the html5 email validation popup?
<form>
<input type="email" placeholder="Enter your email">
<input type="submit" value="Submit">
</form>
The text 'Please enter an email address.' with a different text?
Is it possible to change the text of the html5 email validation popup?
<form>
<input type="email" placeholder="Enter your email">
<input type="submit" value="Submit">
</form>
The text 'Please enter an email address.' with a different text?
Try This,
<input type="text" pattern="[a-zA-Z]+"
oninvalid="setCustomValidity('Plz enter on Alphabets ')"
onchange="try{setCustomValidity('')}catch(e){}" />
Jsfiddle Demo : http://jsfiddle.net/2USxy/