I want to prepand http://
to every URL that doesn't begin with it, I used this:
if (val.search('http://') === -1) {
val = 'http://' + val;
}
The problem is that it appends http://
to URLs that begin with https//
I want to ignore both http://
and https://
.
I want to prepand http://
to every URL that doesn't begin with it, I used this:
if (val.search('http://') === -1) {
val = 'http://' + val;
}
The problem is that it appends http://
to URLs that begin with https//
I want to ignore both http://
and https://
.
- Try the 3rd response of this post stackoverflow./questions/37684/… That's ok for me – Stephane G. Commented Aug 10, 2017 at 11:21
2 Answers
Reset to default 8if (val.indexOf('http://') === -1 && val.indexOf('https://') === -1) {
val = 'http://' + val;
}
The regex
way is:
if (!val.search(/^http[s]?:\/\//)){
val = 'http://' + val;
}
if (val.indexOf('http://') === -1 && val.indexOf('https://') === -1) {
val = 'http://' + val;
}
You could also use a regex:
if(!/^https?:\/\//.test(val)) {
val = 'http://' + val;
}