I\'ve been searching all over for an answer to this and all of the answers I\'ve found haven\'t been in JavaScript.
I need a way, in javascript, to check if a string sta
This should work:
var pattern = /^((http|https|ftp):\/\/)/; if(!pattern.test(url)) { url = "http://" + url; }
jsFiddle