2022-08-31 08:06:45 +04:00
|
|
|
const articles = document.getElementsByTagName("article");
|
|
|
|
|
|
|
|
document.getElementById("filter").classList.remove("hidden");
|
|
|
|
|
2022-10-24 23:06:24 +04:00
|
|
|
function filter(e) {
|
|
|
|
for (const a of articles)
|
|
|
|
a.classList.toggle("hidden",
|
|
|
|
!(e.target.name === "all" || a.id.startsWith(e.target.name)));
|
|
|
|
}
|
|
|
|
|
|
|
|
for (const b of document.getElementsByTagName("button"))
|
|
|
|
b.addEventListener("click", filter);
|