Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I've got the following HTML5 form: http://jsfiddle.net/nfgfP/

Currently when I hit enter when they're both blank a popup box appears saying "Please fill out this field" how would I change that default message to "This field cannot be left blank"?

EDIT: Also note that the type password field's error message is simply *****. To recreate this give the username a value and hit submit.

EDIT: I'm using Chrome 10 for testing. Please do the same

share|improve this question
I've just noticed this exact thing today as well. – Blair McMillan Mar 11 '11 at 13:52
Oh, +1 for the insane empty-password validation message =/ How did that pass QA, I wonder... – David Thomas Apr 18 '11 at 22:52
Why not just accept the browser default message? That's what users see for every other site they visit, you'll just confuse your users by creating a non-standard message. (Google has probably managed more UX evaluation & testing in determining that wording than you have!). – ChrisV Dec 4 '11 at 15:27

6 Answers

up vote 36 down vote accepted

Use setCustomValidity:

$(document).ready(function() {
    var elements = document.getElementsByTagName("INPUT");
    for (var i = 0; i < elements.length; i++) {
        elements[i].oninvalid = function(e) {
            e.target.setCustomValidity("");
            if (!e.target.validity.valid) {
                e.target.setCustomValidity("This field cannot be left blank");
            }
        };
        elements[i].oninput = function(e) {
            e.target.setCustomValidity("");
        };
    }
})

I changed to jQuery from Mootools because I know jQuery better, but you should be able to work out the Mootools equivalent if necessary.

--edit

I've updated the code here as setCustomValidity works slightly differently from what I though when I originally answered. If setCustomValidity is set to anything other than the empty string it will cause the field to be considered invalid - therefore you must clear it before testing validity, you can't just set it and forget. The code would also benefit from more idiomatic jQuery event handling, but I'll leave that as an exercise for the reader.

--further edit

As pointed out in @thomasvdb's comment below, you need to clear the custom validity in some event outside of invalid otherwise there can be an extra pass through the oninvalid handler to clear it.

share|improve this answer
I tried this but there is still an error. If you leave the field empty it shows the message, then enter something in the field but it now shows an empty message and the action isn't executed. If you now click the button again, it will go through. – thomasvdb Sep 6 '12 at 11:36
1  
@thomasvdb Try setting custom validity to an empty string on the input event. At the moment it's only getting cleared if the invalid event gets fired. – robertc Sep 6 '12 at 21:09
This is indeed the solution. Found it out with the solution of @hleinone. Thanks for the response! – thomasvdb Sep 8 '12 at 10:25
@thomasvdb I've updated the example and the answer to correct things – robertc Sep 8 '12 at 12:06
1  
The solution above only uses JQuery to wait for the document to load. Everything else is pure JS and DOM. A browser modern enough to support setCustomValidity should also support the DOMContentLoaded event, meaning JQuery is not needed, if it is not used for anything else. – itpastorn Jan 5 at 17:12

If you feel that the validation string really should not be set by code, you can set you input element's title attribute to read "This field cannot be left blank". (Works in Chrome 10)

title="This field should not be left blank."

See http://jsfiddle.net/kaleb/nfgfP/8/

And in Firefox, you can add this attribute:

x-moz-errormessage="This field should not be left blank."
share|improve this answer
1  
This doesn't change the actual message content. – Wesley Murch Aug 1 '11 at 16:44
2  
At the time I testing it did. – kzh Aug 1 '11 at 22:14
2  
My mistake, OP specified Chrome 10, I was on FF5. Removed downvote, my apologies. Wow, that error message in Chrome is the ugliest thing I've ever seen. – Wesley Murch Aug 1 '11 at 23:04
1  
I don't believe that the title attribute should be the best place for this. Perhaps the browsers should implement some other attribute and agree on it. – kzh Aug 2 '11 at 1:01
2  
For declarative error messages in Firefox use the attribute: x-moz-errormessage="This field should not be left blank." – robertc Sep 8 '11 at 18:50

I have made a small library to ease changing and translating the error messages. You can even change the texts by error type which is currently not available using title in Chrome or x-moz-errormessage in Firefox. Go check it out on GitHub, and give feedback.

It's used like:

<input type="email" required data-errormessage-value-missing="Please input something">

There's a demo available at jsFiddle.

share|improve this answer
Thanks! Solved my little bug mentioned as a comment in the accepted answer. – thomasvdb Sep 6 '12 at 11:48
Wow, great to hear! – hleinone Sep 7 '12 at 8:02

It's very simple to control custom messages with the help of HTML5 event oninvalid

Here is code:<input id="UserID" type="text" required="required" oninvalid="this.setCustomValidity('Witinnovation')">

share|improve this answer
Also check other validations as well such as pattern, min/max values, etc... sanalksankar.blogspot.com/2010/12/… – Jaider Nov 24 '12 at 21:55

It's very simple to control custom messages with the help of the HTML5-event oninvalid

Here is the code:

User ID <input id="UserID"  type="text" required oninvalid="this.setCustomValidity('User ID is a must')">
share|improve this answer

The easiest and cleanest way I've found is to use a data attribute to store your custom error. Test the node for validity and handle the error by using some custom html. enter image description here

le javascript

if(node.validity.patternMismatch)
        {
            message = node.dataset.patternError;
        }

and some super HTML5

<input type="text" id="city" name="city" data-pattern-error="Please use only letters for your city." pattern="[A-z ']*" required>
share|improve this answer

protected by Community Jan 12 at 11:49

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

Not the answer you're looking for? Browse other questions tagged or ask your own question.