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";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2024-06-11 11:29:45 +02:00
|
|
|
|
|
|
|
//INSERT INTO olympic_discipline
|
|
|
|
//VALUES (name='Athlétisme',id='1');
|