Notes : i tired all questions & answer related this topic. Like This
I use simple Form Use URL TextBox i use patterns pattern="https?://.+"
that perfect work.
I want to allow Text (small & uppercase) Like
1. www.test.com
2. https://www.test.com
3. https://test.com
4. WWW.TEST.COM
5. HTTPS://WWW.TEST.COM*
6. HTTP://TEST.COM
i tried Code :
<input name="website" id="website" type="text" class="Custom_textbox" pattern="https?://.+"/>
Notes: Only Using pattern try to solve my problem. not other script
My code Here