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.

I've made a one page layout website, where the menu doesn't show the active/current link, when users come from Google or bookmarked it.

I've made a script that works fine, but as you see.... it look horribly. How can I do this smart??

//Set .active to current page link
    if (location.href.indexOf("#2") != -1) {
        $("#menu li:nth-child(1) a ").addClass("active");
    }
    if (location.href.indexOf("#3") != -1) {
        $("#menu li:nth-child(2) a ").addClass("active");
    }
    if (location.href.indexOf("#4") != -1) {
        $("#menu li:nth-child(3) a ").addClass("active");
    }
    if (location.href.indexOf("#5") != -1) {
        $("#menu li:nth-child(4) a ").addClass("active");
    }
    if (location.href.indexOf("#6") != -1) {
        $("#menu li:nth-child(5) a ").addClass("active");
    }

Thank you in advance...

share|improve this question

2 Answers

up vote 3 down vote accepted

How about something like:

$("#menu li:nth-child(" + ( location.hash.slice(1) - 1 ) + ") a ").addClass("active");
share|improve this answer
It won't work for more than 10 menu items – kirilloid Feb 9 '11 at 22:14
Why not? Seems to work fine for me. The slice just trims off the "#" -- it doesn't limit the length of the number. – Sean McMains Feb 9 '11 at 22:24
Ah, sorry. I look at slice and thinks about charAt :-D – kirilloid Feb 9 '11 at 22:42
Thanks a bunch. I knew it would be simple. Thank you alot... :D – Kenneth B Feb 10 '11 at 14:26
var m = location.href.match(/#(\d+)/);
if (m) {
  var index = parseInt(m[1]) - 1;
  if (index >= 1)
    $("#menu li:nth-child("+index+") a ").addClass("active");
}
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.