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");
}
}
$.cookie("layout'). – dystroy Feb 5 at 19:35