Revert "Added JS for band changes"

This reverts commit fe7f7fa9ff.
This commit is contained in:
phl0
2026-03-05 09:04:47 +01:00
parent ddc388f8d4
commit 9cab971888

View File

@@ -8,27 +8,6 @@ document.addEventListener("DOMContentLoaded", function() {
});
});
});
$('#band2').change(function(){
var band = $("#band2 option:selected").text();
if (band != "SAT") {
$("#sats").val('All');
$("#orbits").val('All');
$("#satrow").hide();
$("#orbitrow").hide();
} else {
$("#satrow").show();
$("#orbitrow").show();
}
});
$('#band2').change(); // trigger the change on fresh-load to hide/show SAT-Params
$('#sats').change(function(){
var sat = $("#sats option:selected").text();
$("#band2").val('SAT');
if (sat != "All") {
}
});
</script>
<div class="container">
<!-- Award Info Box -->