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.
|
What's the fastest method to detect if
Keep it simple, stupid. |
|||||||||||||||
|
|
If you consider a URL being external if either the scheme, host or port is different, you could do something like this:
|
|||||||||||||||||||||
|
|
I know the regex version has already been accepted but I would bet this is "faster" than doing that complex of a regex.
|
|||||
|