I am new to front end web development and am making a small application where I want to validate that the user has in fact entered a valid URL.
At first thought I figured I should solve this using js but what if the user has js turned off?
Should I instead use HTML5 form validation techniques? Or maybe use both?
I know I could do server side validation but my question is mainly if HTML validation is used in real life applications b/c of possibility of js being turned off? Thanks for the help.