2024-02-02 20:39:43 +00:00
|
|
|
function updateMonsterDropdownByFamily() {
|
2024-02-02 02:52:59 +00:00
|
|
|
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));
|
|
|
|
}
|