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

In my forms, I'd like to use the new HTML5 form types, for example <input type="url" /> (more info about the types here).

The problem is that Chrome wants to be super helpful and validate these elements for me, except that it sucks at it. If it fails the built-in validation, there's no message or indication other than the element getting focus. I prefill URL elements with "http://", and so my own custom validation just treats those values as empty strings, however Chrome rejects that. If I could change its validation rules, that would work too.

I know I could just revert back to using type="text" but I want the nice enhancements using these new types offers (eg: it automatically switches to a custom keyboard layout on mobile devices):

So, is there a way to switch off or customise the automatic validation?

share|improve this question
2  
Chrome has a startup flag to disable HTML5 form validation. You can visit chrome://flags to turn this on and off. It's one of those 'Enable to Disable' things. Posting this comment here because I couldn't remember the magic chrome: url. – Randall Bohn Oct 20 '11 at 16:13

5 Answers

up vote 143 down vote accepted

If you want to disable client side validation for a form in HTML5 add a novalidate attribute to the form element. Fx:

<form method="post" action="/foo" novalidate>...</form>

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

share|improve this answer
10  
novalidate="novalidate" and novalidate="" is valid syntax, too. – bassim May 30 '12 at 13:20
@bassim Valid syntax but overly verbose—why type more than you need to? – user1569050 Jan 16 at 14:17
@user1569050 True but sometimes it's not your decision and you just want to validate it. So basically just for the sake of completeness. – bassim Jan 23 at 9:36
3  
@user1569050 For example in frameworks like CakePHP, it will use the novalidate="novalidate" method when you set the novalidate => true in the $options array of the FormHelper::create(). Thanks bassim for the extra info :) – Jelmer Feb 10 at 20:36
Here a chrome extension to add this attribute: chrome.google.com/webstore/detail/html5-form-validation-err/… – Damien Apr 30 at 10:56

I had a read of the spec and did some testing in Chrome, and if you catch the "invalid" event and return false that seems to allow form submission.

I am using jquery, with this HTML.

<input type="url" value="http://" />

<script type="text/javascript">
<!-- // suppress "invalid" events on URL inputs
$('input[type="url"]').bind('invalid', function() {
    return false;
});
// -->
</script>

I haven't tested this in any other browsers.

share|improve this answer
Excellent - I'll try it out tomorrow and let you know how it goes. Thanks. – nickf Jun 22 '10 at 12:54
Wow! I was having a real tough time looking where my submit event was gone. Thank you sir! – Gipsy King Jul 27 '10 at 6:34
FireFox is validating on change of input. Then 'invalid' event is not fired. So, no solution for me. – Niels Steenbeek Nov 12 '12 at 14:42

Instead of trying to do an end run around the browser's validation, you could put the http:// in as placeholder text. This is from the very page you linked:

Placeholder Text

The first improvement HTML5 brings to web forms is the ability to set placeholder text in an input field. Placeholder text is displayed inside the input field as long as the field is empty and not focused. As soon as you click on (or tab to) the input field, the placeholder text disappears.

You’ve probably seen placeholder text before. For example, Mozilla Firefox 3.5 now includes placeholder text in the location bar that reads “Search Bookmarks and History”:

enter image description here

When you click on (or tab to) the location bar, the placeholder text disappears:

enter image description here

Ironically, Firefox 3.5 does not support adding placeholder text to your own web forms. C’est la vie.

Placeholder Support

IE  FIREFOX SAFARI  CHROME  OPERA   IPHONE  ANDROID
·   3.7+    4.0+    4.0+    ·       ·       ·

Here’s how you can include placeholder text in your own web forms:

<form>
  <input name="q" placeholder="Search Bookmarks and History">
  <input type="submit" value="Search">
</form>

Browsers that don’t support the placeholder attribute will simply ignore it. No harm, no foul. See whether your browser supports placeholder text.

It wouldn't be exactly the same since it wouldn't provide that "starting point" for the user, but it's halfway there at least.

share|improve this answer
+1 for the tip, but it's not going to be a solution for me unfortunately. I still don't want any validation done, mainly because the UX for it is so poor. – nickf Jun 22 '10 at 5:40

I just wanted to add that using the novalidate attribute in your form will only prevent the browser from sending the form. The browser still evaluates the data and adds the :valid and :invalid pseudo classes.

I found this out because the valid and invalid pseudo classes are part of the HTML5 boilerplate stylesheet which I have been using. I just removed the entries in the CSS file that related to the pseudo classes. If anyone finds another solution please let me know.

share|improve this answer

I found a solution for Chrome with CSS this following selector without bypassing the native verification form who can be very useful.

form input::-webkit-validation-bubble-message, 
form select::-webkit-validation-bubble-message,
form textarea::-webkit-validation-bubble-message {
    display:none;
} 

By this way, you can also customise your message...

I get the solution on this page : http://trac.webkit.org/wiki/Styling%20Form%20Controls

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.