With HTML5 url input validation assume url starts with http://
The code for this should not interrupt the user’s action, but should instead wait until the user leaves the form field to check the input text for “http”. So use “onblur” instead of “onkeyup”. Then, just see if the string contains “http” using indexOf. If not, it will return -1, which is falsey. function checkURL … Read more