Suppose you have an element like so
Then if the client side validation fails, the following message is shown
I would like to give that element a name, which is understood by the end user. For example "first name". I tried by coding
However, then the message is shrunken to
So what do I have to do, so all standard message use the user-oriented naming for the element?
Michael G. Schneider
<input type="text" name="prsFirstName" required />Then if the client side validation fails, the following message is shown
prsFirstName is requiredI would like to give that element a name, which is understood by the end user. For example "first name". I tried by coding
<input type="text" name="prsFirstName" title="first name" required />However, then the message is shrunken to
first nameSo what do I have to do, so all standard message use the user-oriented naming for the element?
Michael G. Schneider