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.

This script:

$(function() {
    $('a').each(function() {
        var href = $(this).attr('href');
        if ("a:not(http://)") {
            $(this).attr('href', '/' + href);
        }
    });
});

Add the slash to every link even links with the contain "http://" Not sure why? I do not get any errors?

Any ideas on how I can fix this?

share|improve this question
What are you expecting if("a:not(http://)") to do? – MrOBrian Jul 31 '12 at 21:28
1  
Why are you doing this? This will be updating relative links, SSL links, file links, etc... – Sinetheta Jul 31 '12 at 21:33

3 Answers

up vote 6 down vote accepted

You mixed up two things:

  • jQuery selectors:

    $(function() {
        $('a:not([href^="http://"])').each(function() {
            var href = $(this).attr('href');
            $(this).attr('href', '/' + href);  
        });
    });
    
  • and pure javascript if statements:

    $('a').each(function() {
       var href = $(this).attr('href');
       if (href.substr(0, 'http://'.length) == 'http://'){
           $(this).attr('href', '/' + href); 
       }   
    });
    

Both do the same.

Note that they will generate invalid links for other schemes than http (e.g. /https://example.com/index.html). Depending on how clean the HTML code you're working with is, you may simply look for the colon to identify absolute links:

$(function() {
    $('a:not([href*=":"])').each(function() {
        var href = $(this).attr('href');
        $(this).attr('href', '/' + href);  
    });
});
share|improve this answer
Awesome Thank you – BostonBB Jul 31 '12 at 21:44

First, you code is equal to the following

$(function() {
   $('a').each(function() {
      var href = $(this).attr('href');
      if(true) { $(this).attr('href', '/' + href); }   
   });
});

if you really want to update href based on condition, if statetment should be different:

$(function() {
   $('a').each(function() {
     var href = $(this).attr('href');
     if(href.indexOf('http://') == -1 ) { $(this).attr('href', '/' + href); }   
   });
});

Another way would be the one offered by @Yogu, where you simple don't loop for links which you are not going to update

share|improve this answer

Just a addon to Yogu,

Remember that your in the context of each tag. "Inside the object itself". So, you can access the href directly.

$('a').each(function() {
   if (this.href.substr(0, 'http://'.length) == 'http://'){
       this.setAttribute('href', '/' + href); 
   }   
});
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.