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

link|improve this question

76% accept rate
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
feedback

4 Answers

up vote 16 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");
            }
        };
    }
})

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.

link|improve this answer
feedback

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."
link|improve this answer
1  
This doesn't change the actual message content. – Wesley Murch Aug 1 '11 at 16:44
At the time I testing it did. – kzh Aug 1 '11 at 22:14
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
feedback

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.

link|improve this answer
feedback

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!).

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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