One of my users complains she can’t fill out the comments form on a blog post without entering the url field (which is not required).
Attached is a screen shot of the problem. From what I see it’s Chrome (latest version, windows) interupting the submitting. It probably thinks the “http://” is not a valid url so it won’t submit.
If she deletes the “http://”, Chrome has no problem submitting the form.
Here’s the code I used in my template for the comment form:
<label for="url">Website:</label> <input class="text" type="url" autocapitalize="off" name="url" value="{url}" size="50" />How can I fix this problem? Can I remove the pre-filled http:// and what happens if users then submit an url such as
<a href="http://www.myblog.com">http://www.myblog.com</a>? Will it break the link?