mirror of
https://github.com/edcommonwealth/sqm-dashboards.git
synced 2026-03-07 21:48:16 -08:00
9 lines
328 B
JavaScript
9 lines
328 B
JavaScript
document.addEventListener("DOMContentLoaded", function() {
|
|
document.querySelector('#select-school').addEventListener('change', (event) => {
|
|
window.location = event.target.value;
|
|
});
|
|
|
|
document.querySelector('#select-district').addEventListener('change', (event) => {
|
|
window.location = event.target.value;
|
|
});
|
|
});
|