Files
doitinpoland.com/wp-content/themes/cyber/assets/js/custom.js
2024-09-27 14:07:49 +02:00

7 lines
196 B
JavaScript

jQuery(document).ready(function($) {
$('.archive-year-toggle').on('click', function() {
var monthsList = $(this).next('.archive-months');
monthsList.slideToggle();
});
});