Cloudlog/assets/js/sections/adif.js
2023-11-19 17:04:19 +01:00

11 行
无行尾
273 B
JavaScript

$(document).ready(function(){
$('#markExportedToLotw').click(function(e){
let form = $(this).closest('form');
let station = form.find('select[name=station_profile]');
if (station.val() == 0) {
station.addClass('is-invalid');
}else{
form.submit();
}
})
});