SAE_web/assets/scripts/tonTruc.js

15 lines
389 B
JavaScript
Raw Normal View History

2024-06-11 11:27:08 +02:00
// JavaScript code
function rechercher_evenement() {
let input = document.getElementById("searchbar").value;
input = input.toLowerCase();
let x = document.getElementsByClassName("animals");
for (i = 0; i < x.length; i++) {
if (!x[i].innerHTML.toLowerCase().includes(input)) {
x[i].style.display = "none";
} else {
x[i].style.display = "list-item";
}
}
}