Is that I can change the message content validation of input in html 5.
Example :
The message Validation should have : Enter your Name please
Is that I can change the message content validation of input in html 5.
Example :
The message Validation should have : Enter your Name please
<input type="text" required="" pattern="[A-Za-z]+" value="" oninvalid="setCustomValidity('Enter your Name please')"/>
Not sure if that is the right regex for your name field but you can change the validation message with
oninvalid="setCustomValidity('Enter your Name please')"