11 908
edições
Sem resumo de edição |
Sem resumo de edição |
||
| Linha 54: | Linha 54: | ||
} | } | ||
function | |||
document.getElementById("sortButton").addEventListener("click", function() { | |||
const container = document.getElementById("gymContainer"); | const container = document.getElementById("gymContainer"); | ||
const boxes = Array.from(container.getElementsByClassName("square-box-gym")); | const boxes = Array.from(container.getElementsByClassName("square-box-gym")); | ||
| Linha 65: | Linha 69: | ||
const numB = parseInt(textB.match(/\d+/)[0]); | const numB = parseInt(textB.match(/\d+/)[0]); | ||
return numA - numB; | return numA - numB; | ||
}); | }); | ||
boxes.forEach(box => container.appendChild(box)); | boxes.forEach(box => container.appendChild(box)); | ||
} | }); | ||