Hacker News new | ask | show | jobs
by kimusan 857 days ago
Nice service.

A small comment. Let the url input be case insensitive (the https + domain part of course). Using it from mobile often set first H in https as uppercase and this mails your site fail.

1 comments

A potential alternative is to set the following HTML attributes on the <input> field:

    autocorrect="off"
    autocapitalize="off"
URL inputs are otherwise also supported via <input type="url">

https://developer.mozilla.org/en-US/docs/Web/HTML/Element/in...