Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

Within my web application I am using some custom validation for my form fields. Within the same form I have two buttons: one to actually submit the form and the other to cancel/reset the form.

Mostly I use Safari as my default browser. Now Safari 5 is out and suddenly my cancel/reset button didn't work anymore. Every time I did hit the reset button the first field in my form did get the focus. However this is the same behavior as my custom form validation. When trying it with another browser everything just worked fine. I had to be a Safari 5 problem.

I changed a bit in my Javascript code and I found out that the following line was causing the problem:

document.getElementById("somefield").required = true;

To be sure that would be really the problem I created a test scenario:

<!DOCTYPE html>
<html>
<head>
    <title>Test</title>
</head>

<body>
    <form id="someform">
        <label>Name:</label>&nbsp;<input type="text" id="name" required="true" /><br/>
        <label>Car:</label>&nbsp;<input type="text" id="car" required="true" /><br/>
        <br/>
        <input type="submit" id="btnsubmit" value="Submit!" />
    </form>
</body>
</html>

What I expected would happen did happen. The first field "name" did get the focus automatically.

Anyone else stumbled into this?

share|improve this question

6 Answers

up vote 17 down vote accepted

I just ran into this issue with Safari 5 and it has been an issue with Opera 10 for some time, but I never spent time to fix it. Now I need to fix it and saw your post but no solution yet on how to cancel the form. After much searching I finally found something:

http://www.w3.org/TR/html5/forms.html#attr-fs-formnovalidate

<input type=submit formnovalidate name=cancel value="Cancel">

Works on Safari 5 and Opera 10.

share|improve this answer
3  
You can also use novalidate on the form tag to do this for the entire form. – Michael Mior Jun 9 '11 at 13:53
I have packaged a small Chrome extension adding this attribute to all the forms in the current tab, thanks for the tip! chrome.google.com/webstore/detail/html5-form-validation-rem/… – Damien Apr 10 at 14:17

Note that

<input type="text" id="car" required="true" />

is wrong, it should be one of

<input type="text" id="car" required />
<input type="text" id="car" required="" />
<input type="text" id="car" required='' />
<input type="text" id="car" required=required />
<input type="text" id="car" required="required" />
<input type="text" id="car" required='required' />

This is because the true value suggests that the false value will make the form control optional, which is not the case.

share|improve this answer
+1. Well spotted. Surprised I missed this. – David Foster Jun 10 '10 at 9:21
best answer by far – Ernest Nov 23 '11 at 0:59
2  
This answer is true, but I think that isn't the problem that we have here. – PhoneixS Aug 16 '12 at 11:53
is this safe to use ? ... I mean should I use this or just stick to javascript validation ? by safe I mean , do this solution produce anomalies on different browser/device... – Kebyang Blabla Mar 19 at 6:21

If I understand your question correctly, is it the fact that the required attribute appears to have default behaviour in Safari that's confusing you? If so, see: http://dev.w3.org/html5/spec/Overview.html#the-required-attribute

required is not a custom attribute in HTML 5. It's defined in the spec, and is used in precisely the way you're presently using it.

EDIT: Well, not precisely. As ms2ger has pointed out, the required attribute is a boolean attribute, and here's what the HTML 5 spec has to say about those:

Note: The values "true" and "false" are not allowed on boolean attributes. To represent a false value, the attribute has to be omitted altogether.

See: http://dev.w3.org/html5/spec/Overview.html#boolean-attribute

share|improve this answer
1  
And that is why we shouldn't make up custom attributes or properties on standard objects. – Quentin Jun 10 '10 at 9:03
Any ideas how to turn off this for Chrome and Safari for the particular page? – Restuta Jun 16 '10 at 15:01
@Restuta go to about:flags to disable this in Chrome. Firefox, I'm not sure. – therealklanni Oct 20 '11 at 1:32

A small note on custom attributes: HTML5 allows all kind of custom attributes, as long as they are prefixed with the particle data-, i.e. data-my-attribute="true".

share|improve this answer
And these work fine in older browsers (except you’ll need your own code to access their values, rather than the new API), so they’re a better choice than making up your own attributes (as they won’t clash with any official attributes added in the future). – Paul D. Waite Jul 9 '11 at 10:44
Actually, custom attributes can literally be anything. Those prefixed with "data-" will appear in the element.dataset object, however, as well as other advantages (for instance, jQuery will automatically be able to grab the value of any "data-" prefixed custom attribute using the .data() method, i.e. .data("myAttribute") = value of data-my-attribute). Using shorter custom attributes can sometimes be useful for making custom CSS3 selectors. – therealklanni Oct 20 '11 at 1:29

Okay. The same time I was writing down my question one of my colleagues made me aware this is actually HTML5 behavior. See http://dev.w3.org/html5/spec/Overview.html#the-required-attribute

Seems in HTML5 there is a new attribute "required". And Safari 5 already has an implementation for this attribute.

share|improve this answer
Damn, you answered your own question within seconds of me posting the same answer! – David Foster Jun 9 '10 at 9:59
Thanks to one of my colleagues indeed. This can be interesting for others I suppose? – Joop Jun 9 '10 at 10:38
Definitely! I'm kind of excited to see what the final HTML5 spec will have to offer on the form front. – David Foster Jun 9 '10 at 14:08

Have you tried using the required attribute of HTML5(http://www.w3.org/TR/html5/forms.html#the-required-attribute)?

<body>
    <form id="someform">
        <label>Name:</label>&nbsp;<input type="text" id="name" required /><br/>
        <label>Car:</label>&nbsp;<input type="text" id="car" required /><br/>
        <br/>
        <input type="submit" id="btnsubmit" value="Submit!" />
    </form>
</body>
</html>
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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