6 lines
183 B
JavaScript
Executable File
6 lines
183 B
JavaScript
Executable File
$('.child').hide();
|
|
$('.parent').children().click(function () {
|
|
event.preventDefault();
|
|
$(this).children('.child').slideToggle('slow');
|
|
$(this).find('span').toggle();
|
|
}); |