-
1. Data: 2011-04-08 20:09:37
Temat: [jquery] css dla następnego elementu w drzewie
Od: hazet <h...@n...pl>
Witam, mam taki kod:
$(document).ready(function () {
$('#cat_list li').click(function () {
//slideup or hide all the Submenu
$('#cat_list li').children('ul').slideUp('fast');
//remove all the "Over" class, so that the arrow reset to default
$('#cat_list li > a').each(function () {
if ($(this).attr('rel')!='') {
$(this).removeClass($(this).attr('rel') + 'Over'
);
}
});
//show the selected submenu
$(this).children('ul').slideDown('fast');
//add "Over" class, so that the arrow pointing down
$(this).children('a').addClass($(this).children('li a').attr('rel')
+ 'Over');
});
});
Chcę aby następny element li w #cat_list miał określony styl CSS po
kliknięciu/najechaniu na poprzedni element . Jak to zrobić ? (gdzie
dodać kod ?)
-
2. Data: 2011-04-09 12:55:49
Temat: Re: [jquery] css dla następnego elementu w drzewie
Od: beherit / pn <b...@g...com>
>
> Chcę aby następny element li w #cat_list miał określony styl CSS po
> kliknięciu/najechaniu na poprzedni element . Jak to zrobić ? (gdzie
> dodać kod ?)
choćby do document.ready
$('#cat_list).hover(
function() {
$(this).next('li').addClass('aaa');
},
function() {
tutaj remove class;
}
);
pozdr,p.
http://www.teleit.pl