Parašė Creatium· 2010 Rugp. 17 13:08:39
#7
Taip turėtų atrodyt?
$(document).ready(function() {
$("#nav li > ul").each(function() {
$(this).hide();
});
var base = $('base').attr("href");
$("#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');
}
}
$("#nav a").click(function() {
if (!$(this).attr("href")) {
$(this).next().toggle();
}
});
});
Nes taip tai neveikia išvis kodas... Ar aš ne taip supratau?