I want to validate URL and i need a function. So user can type HTTP://, HTTPS://, WWW or just facebook.com. I need to make sure that everything works regardless of how they type it.
some think like :
function ValidateUrl(url){
return CorrectUrl;
}
Thank's in advance :)