You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
function filtreAliasVirtuels() {
|
|
|
|
// Déclaration des variables
|
|
|
|
var input, filter, ul, li, a, i, txtValue;
|
|
|
|
input = document.getElementById('nom_alias');
|
|
|
|
filter = input.value.toUpperCase();
|
|
|
|
ul = document.getElementById("liste_alias_virtuels");
|
|
|
|
li = ul.getElementsByTagName('li');
|
|
|
|
|
|
|
|
// Pour chaque "<li>", comparer le contenu (actualisé à chaque frappe) du "<input>" "nom_alias" avec le texte du "<p>" qu'il contient
|
|
|
|
// Si le contenu du champ de texte est vide, n'en masquer aucun. Si le motif correspond, masquer les autres
|
|
|
|
for (i = 0; i < li.length; i++) {
|
|
|
|
a = li[i].getElementsByTagName("p")[0];
|
|
|
|
txtValue = a.textContent || a.innerText;
|
|
|
|
if (txtValue.toUpperCase().indexOf(filter) > -1) {
|
|
|
|
li[i].style.display = "";
|
|
|
|
} else {
|
|
|
|
li[i].style.display = "none";
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|