Temos pavadinimas: WordPress, Shopify ir PHPFusion programuotojų bendruomenė :: Kodo problemėlė

Parašė ozzWANTED· 2010 Rugp. 17 12:08:24
#6

Mano patarimas - naudok alert(''); debugui. Su IE pamatysi kokį compare daro ir kodėl netinka:
$("#nav a").each(function() {
    /*debug*/ alert((base + $(this).attr("href")) + '==' + window.location.href);
    if (base + $(this).attr("href") == window.location.href) {   
         $(this).parents().show();
        /*debug*/ alert('ok');
    } else {
    /*debug*/ alert('failed');
    }
}