Всем привет.
Нашел
один хороший способ сделать раскрывающиеся списки.
Но есть одна проблема. Не могу никак избавиться от привязки к кукам и, чтобы по-умолчанию все пункты были закрыты.
Вот мой скрипт:
$(document).ready(function() {
$('ol#category-list ul').each(function(i) { // Check each submenu:
if ($.cookie('submenuMark-' + i)) { // If index of submenu is marked in cookies:
$(this).show().prev().removeClass('collapsed').addClass('expanded'); // Show it (add apropriate classes)
}else {
$(this).hide().prev().removeClass('expanded').addClass('collapsed'); // Hide it
}
$(this).prev().addClass('collapsible').click(function() { // Attach an event listener
var this_i = $('ol#category-list ul').index($(this).next()); // The index of the submenu of the clicked link
if ($(this).next().css('display') == 'none') {
// When opening one submenu, we hide all same level submenus:
$(this).parent('li').parent('ol').find('ul').each(function(j) {
if (j != this_i) {
$(this).slideUp(200, function () {
$(this).prev().removeClass('expanded').addClass('collapsed');
cookieDel($('ol#category-list ul').index($(this)));
});
}
});
// :end
$(this).next().slideDown(200, function () { // Show submenu:
$(this).prev().removeClass('collapsed').addClass('expanded');
cookieSet(this_i);
});
}else {
$(this).next().slideUp(200, function () { // Hide submenu:
$(this).prev().removeClass('expanded').addClass('collapsed');
cookieDel(this_i);
$(this).find('ol').each(function() {
$(this).hide(1, cookieDel($('ol#category-list ul').index($(this)))).prev().removeClass('expanded').addClass('collapsed');
});
});
}
return false; // Prohibit the browser to follow the link address
});
});
});
function cookieSet(index) {
$.cookie('submenuMark-' + index, 'opened', {expires: null, path: '/'}); // Set mark to cookie (submenu is shown):
}
function cookieDel(index) {
$.cookie('submenuMark-' + index, null, {expires: null, path: '/'}); // Delete mark from cookie (submenu is hidden):
}
Подскажите, пожалуйста, какие куски кода надо убрать, чтобы достичь нужного мне результата?
Спасибо.