When you use a input type of "url" instead of the standard "text". Firefox 4 will not submit the form without "http://" or "https://" in the input box.

All I'm after is a URL without the protocol such as www.google.com not http://www.google.com. Is there a parameter to do this or any other way (preferably without JavaScript)?

link|improve this question

71% accept rate
feedback

2 Answers

Have you tried the pattern parameter? It looks like it may be what you need. You'll have to find/create a regex to match the validation you're looking for, though.

See Pattern Attribute: http://www.w3schools.com/html5/html5_form_attributes.asp (Works on FF4)

link|improve this answer
epic... can someone help me out with a pattern????? – hozza May 3 '11 at 21:27
This doesn't appear to work as expected, at least in chrome (17). When adding a pattern of .{7} you would expect anything 7 characters long would be accepted. Turns out, no. Chrome still requires http: to be the first 5 characters. – Gidgidonihah Nov 11 '11 at 15:22
feedback

I use RegExr for all my regular expression creation needs. They have a number of pre-defined regular expressions.

You might be able to reverse engineer this a little: (https?://)?(www\.)?([a-zA-Z0-9_%]*)\b\.[a-z]{2,4}(\.[a-z]{2})?((/[a-zA-Z0-9_%]*)+)?(\.[a-z]*)?

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.