18 lines
461 B
JavaScript
18 lines
461 B
JavaScript
// 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";
|
|
}
|
|
}
|
|
}
|
|
|
|
//INSERT INTO olympic_discipline
|
|
//VALUES (name='Athlétisme',id='1');
|