20/02/2024

This commit is contained in:
2024-02-20 09:12:28 +07:00
parent 8b2b8c98f2
commit 4ce7b2e3e9
17 changed files with 2162 additions and 19 deletions

View File

@@ -17,4 +17,16 @@ $(document).ready(function () {
clickable: true,
},
});
});
clickFillter();
});
function clickFillter() {
$(".item-filter").each(function () {
var nutClick = $(this).find(".title-filter");
$(nutClick).click(function () {
$(this).parent().toggleClass("hidden");
})
})
}