2025-06-16 18:28:08 +05:00

6 lines
183 B
JavaScript
Executable File

$('.child').hide();
$('.parent').children().click(function () {
event.preventDefault();
$(this).children('.child').slideToggle('slow');
$(this).find('span').toggle();
});