I need to check if a string starts with http:// in java script
What I have is
if(!txt.match(/^http:/)) {} // this only works for http:
I need to make it work for http://
can any one suggest a solution please?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You need to escape
\chars, also for checking is better to usetestmethod.