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.

How do I test to see if some links are external or internal? Please note:

  1. I cannot hard code the local domain.
  2. I cannot test for "http". I could just as easily be linking to my own site with an http absolute link.
  3. I want to use jQuery / javascript, not css.

I suspect the answer lies somewhere in location.href, but the solution evades me.

Thanks!


Update: Thanks to jAndy, I've got a slightly modified version of what he answered:

        hostname = new RegExp(location.host);
        // Act on each link
        $('a').each(function(){

            // Store current link's url
            var url = $(this).attr("href");

            // Test if current host (domain) is in it
            if(hostname.test(url)){
               // If it's local...
               $(this).addClass('local');
            }
            else if(url.slice(0, 1) == "#"){
                // It's an anchor link
                $(this).addClass('anchor'); 
            }
            else {
               // a link that does not contain the current host
               $(this).addClass('external');                        
            }
        });
share|improve this question
do you want to check it when the link is clicked or on page load? – Elangovan May 26 '10 at 7:42
page load, thanks. – Matrym May 26 '10 at 7:52
Your answer does not work. All checking should be done on element.href (from DOM) instead of $(element).attr('href'). Proof: jsfiddle.net/rahzy/1 Please accept Sean's answer. – Damian Nowak Oct 26 '11 at 14:49

5 Answers

up vote 8 down vote accepted
var comp = new RegExp(location.host);

$('a').each(function(){
   if(comp.test($(this).attr('href'))){
       // a link that contains the current host           
       $(this).addClass('local');
   }
   else{
       // a link that does not contain the current host
       $(this).addClass('external');
   }
});

Note: this is just a quick & dirty example. It would match all href="#anchor" links as external too. It might be improved by doing some extra RegExp checking.

share|improve this answer
This works fairly well, although I'm going to hold off on an answer in case someone else has a more elegant solution. Out of curiosity, why do anchor links register as external? – Matrym May 26 '10 at 8:05
4  
I'm pretty sure that this will not work with relative urls. attr is supposed to return the attribute, not the property (the property might be resolved, not the attribute). – Sean Kinsey May 26 '10 at 10:12
6  
jsfiddle.net/zuSeh It is verified that this method does not work for relative urls. – Sean Kinsey May 26 '10 at 10:14
+1 for Sean. It does NOT work. – Damian Nowak Oct 26 '11 at 14:48
Just ran into this and want to confirm that this code indeed has a problem with relative urls. So +1 on Sean and Damian. – Grimace of Despair Jul 25 '12 at 10:39

And the no-jQuery way

var nodes = document.getElementsByTagName("a"), i = nodes.length;
var regExp = new RegExp("//" + location.host + "($|/)");
while(i--){
    var href = nodes[i].href;
    var isLocal = (href.substring(0,4) === "http") ? regExp.test(href) : true;
    alert(href + " is " + (isLocal ? "local" : "not local"));
}

All hrefs not beginning with http (http://, https://) are automatically treated as local

share|improve this answer
1  
This is verified by the way – Sean Kinsey May 26 '10 at 8:28
1  
This answer is more accurate. Relatives URL are also important. – Savageman May 26 '10 at 22:37
1  
hah, someone actually downvoted this.. must have been a jQuery fanboy =) – Sean Kinsey May 27 '10 at 18:35
If I'm not mistaken, "($|/" should actually be "($|/)" with a closing brace – Grimace of Despair Jul 25 '12 at 8:08
Thanks @GrimaceofDespair. – Sean Kinsey Jul 27 '12 at 3:23
show 2 more comments
var external = RegExp('^((f|ht)tps?:)?//(?!' + location.host + ')');

Usage:

external.test('some url'); // => true or false
share|improve this answer
+1 for the regexp, though it does not completely solve the question – feeela Dec 8 '12 at 21:58

You forgot one, what if you use a relative path.

forexample: /test

        hostname = new RegExp(location.host);
            // Act on each link
            $('a').each(function(){

            // Store current link's url
            var url = $(this).attr("href");

            // Test if current host (domain) is in it
            if(hostname.test(url)){
               // If it's local...
               $(this).addClass('local');
            }
            else if(url.slice(0, 1) == "/"){
                $(this).addClass('local'); 
            }
            else if(url.slice(0, 1) == "#"){
                // It's an anchor link
                $(this).addClass('anchor'); 
            }
            else {
               // a link that does not contain the current host
               $(this).addClass('external');                        
            }
        });

There are also the issue of file downloads .zip (local en external) which could use the classes "local download" or "external download". But didn't found a solution for it yet.

share|improve this answer

Yes, I believe you can retrieve the current domain name with location.href. Another possibility is to create a link element, set the src to / and then retrieving the canonical URL (this will retrieve the base URL if you use one, and not necessarily the domain name).

Also see this post: http://stackoverflow.com/questions/2639070/get-the-full-uri-from-the-href-property-of-a-link

share|improve this answer

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.