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.

Is there a faster more optimized way of accomplishing this?

if (window.location.href.indexOf('/search/?') >= 0) {
    if ($.cookie("Layout") == "Poster") {
        $("link").attr("href", "../css/list.css");
    } else if ($.cookie("Layout") == "Poster") {
        $("link:first").attr("href", "css/list.css");
    }
}

if (window.location.href.indexOf('/search/?') >= 0) {
    if ($.cookie("Layout") == "Description") {
        $("link").attr("href", "../css/desc.css");
    } else if ($.cookie("Layout") == "Description") {
        $("link:first").attr("href", "css/desc.css");
    }
}
share|improve this question
2  
To start with you could avoid repeating the test. – dystroy Feb 5 at 19:32
2  
Yes, that could definitely be optimized, however you won't see any noticeable difference in execution time. It'l just be easier to maintain. – Kevin B Feb 5 at 19:33
You should explain what you are trying to do and why, and format your code so that it is better readable. – Martijn de Milliano Feb 5 at 19:34
A (not user noticeable) difference would come from caching of $.cookie("layout'). – dystroy Feb 5 at 19:35
The optimization here would be to optimize maintainability and make your code a bit more readable. But as mentioned already - the actual performance optimization is minimal – Lix Feb 5 at 19:35
show 2 more comments

closed as too localized by dystroy, Shmiddty, Kevin B, rlemon, John Koerner Feb 5 at 21:45

This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, see the FAQ.

1 Answer

up vote 0 down vote accepted

I see you are actually testing the same thing as the original condition in an else if clause. This is redundant. The else if condition will never execute because you are in the else clause of the same conditional expression (confusing myself just thinking about it)..

if ($.cookie("Layout") == "Poster") {
  ...
}else if ($.cookie("Layout") == "Poster") { ... } 

That should shout out to you as something wrong... The second if statement will simply never ever execute...

What you might want to do is use a switch statement. Something similar to this -

if (window.location.href.indexOf('/search/?') >= 0) { 
    switch($.cookie("Layout")){
       case "Layout" :
         // behavior for "Layout"
       break;
       case "Description" : 
         // behavior for "Description"
       break;
       default : 
         // behavior for unknown $.cookie("Layout") value
       break;
    }
}
share|improve this answer