Hacker News new | ask | show | jobs
by jcynix 154 days ago
Nice one, really helpful!

Minor nit: the input on mobile auto-capitalizes, so a link starts with "Www" which I find mildly annoying. You could force the input field all lowercase with

    <input type="text" autocapitalize="none" >
which tells modern browsers not to do this.
1 comments

thanks!