Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

What's the fastest method to detect if my_var (=url) is external (eg. compare with location.href)?

alert(location.href) // eg. sub.mydomain.com

var my_var = "http://www.facebook.com";

Keep it simple, stupid.

share|improve this question
What would you consider external? Different scheme/host/port? – Gumbo Jun 4 '11 at 17:39
i've edited my post – cept0 Jun 4 '11 at 17:40
fast, simple, accurate: choose 2? – Paul Jun 4 '11 at 17:42
1  
this could be solution : stackoverflow.com/questions/2910946/… – V... I... Jun 4 '11 at 17:44
1  
Is your current way slow? – Felix Kling Jun 4 '11 at 17:45
show 4 more comments

2 Answers

up vote 12 down vote accepted

If you consider a URL being external if either the scheme, host or port is different, you could do something like this:

function isExternal(url) {
    var match = url.match(/^([^:\/?#]+:)?(?:\/\/([^\/?#]*))?([^?#]+)?(\?[^#]*)?(#.*)?/);
    if (typeof match[1] === "string" && match[1].length > 0 && match[1].toLowerCase() !== location.protocol) return true;
    if (typeof match[2] === "string" && match[2].length > 0 && match[2].replace(new RegExp(":("+{"http:":80,"https:":443}[location.protocol]+")?$"), "") !== location.host) return true;
    return false;
}
share|improve this answer
3  
+1 Look at this regex beauty. ;) it's like from mr.Regex himself! ;) huhu – roXon Jun 4 '11 at 19:51
1  
@roXon: The regular expression is actually from the current RFC for URIs. – Gumbo Jun 5 '11 at 7:18
1  
for external links (facebook.com/mypage/id/123456789) i recieve the following results in msie: test 1 (typeof match[1]): false, test 2 (typeof match[2]): true, for internal links (sub.mydomain.com = host): test 1 (typeof match[1]): true, test 2 (typeof match[2]): true (should all be false) - why so ? – cept0 Jun 5 '11 at 10:20
1  
5mins faster ^^, i've found out the following (with !!): if (!!match[1] && match[1].toLowerCase() ... anyways, thank you gumbo! – cept0 Jun 5 '11 at 11:44
1  
@PhilipDaubmeier: That’s not an absolute URL. – Gumbo Jan 12 '12 at 14:30
show 6 more comments

I know the regex version has already been accepted but I would bet this is "faster" than doing that complex of a regex. String.replace is quite fast.

var isExternal = function(url) {
    return !(location.href.replace("http://").replace("https://").split("/")[0] === url);
}
share|improve this answer
Thank you, in fact: this solution is faster +1 – cept0 Mar 17 '12 at 10:04
Cool. Glad it works better for you. Regex's definitely have their place, but often times it is used like a chainsaw when a carving knife might be more appropriate. – pseudosavant Mar 19 '12 at 17:25

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.