dwm-app/static/js/updateMonsterDropdownByFamily.js
2024-02-02 15:39:43 -05:00

10 lines
400 B
JavaScript

function updateMonsterDropdownByFamily() {
const selectedFamily = familyDropdown.value;
// Fetch monsters data from the server based on the selected family
fetch(`/get_monsters?family=${selectedFamily}`)
.then(response => response.json())
.then(data => populateDropdown(monsterDropdown, data))
.catch(error => console.error("Error fetching monsters:", error));
}