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

Parašė Creatium· 2010 Rugp. 17 15:08:49
#10

Hehehe...

Susitvarkiau prirašęs return false; :D

Va taip atrodo veikiantis kodas:

$(document).ready(function() {
         $("#nav li > ul").each(function() {
            $(this).hide();
         });   
         
         var base = $('base').attr("href");      
         $("#nav a").each(function(){
            if (base + $(this).attr("href") == window.location) {   
               $(this).parents().show();
               return false;
            }
         });
         $("#nav a").click(function(){
            if (!$(this).attr("href")) {
               $(this).next().toggle();
            }
         });
      });