I have a simple HTML where I need a list of names that I can add, remove, and two buttons that sort in ascending and descending order.
I was only able to add and remove it from the list.
var convidados = new Array();
function InsereConvidado() {
var conv = document.getElementById("convidado");
if (conv.value !== '') {
convidados.push(conv.value);
conv.value = '';
AtualizaLista();
}
}
function AtualizaLista() {
if (convidados.length > 0) {
document.getElementById("presentes").innerHTML = "";
convidados = convidados.sort();
for (i = 0; i < convidados.length; i++) {
document.getElementById("presentes").innerHTML += '<li><span id="nome">' + convidados[i] + '</span> <span onClick="RemoverConvidado(this);" style="color: red;">[x]</span></li>';
}
} else {
document.getElementById("presentes").innerHTML = "Nenhum convidado na lista.";
}
}
function RemoverConvidado(el) {
var nome = el.parentNode.firstChild.innerHTML;
for (i = 0; i < convidados.length; i++) {
if (convidados[i] === nome) {
convidados.splice(i, 1);
AtualizaLista();
}
}
}
<h4>Lista de Presentes</h4>
<ul id="presentes">Nenhum convidado na lista.</ul>
<h4>Inserir Convidado</h4>
<input type="text" placeholder="Nome do Convidado" id="convidado" />
<button type="button" onClick="InsereConvidado();">Inserir</button>
Can anyone help me add two buttons in this list? One that orders in ascending order the names and another that orders in descending order.