How to provide i18n validation confirmation message if invalid email address is specified in html5

<!DOCTYPE HTML> <html> <body> <form action="demo_form.asp" method="get"> E-mail: <input type="email" name="user_email" /><br /> <input type="submit" /> </form> </body> </html> 

How to provide an i18n compliance check message if an invalid email address is specified in html5. He is currently issuing a verification message, "Please enter an email address," don’t know where this is selected?

+4
source share
1 answer

This message comes from the browser itself, although, to my surprise, switching your language to Firefox 13 at least does not change the message. However, a colleague reports that when downloading a version in different languages ​​of Firefox, however, it changes the message.

It seems like we really need standardization and customization, as HTML5 will catch. Otherwise, we will begin to degrade the work of users using new fields than without them.

+1
source

All Articles