Trigger QRZ-Lookup, etc. after DXCluster-Lookup in js

这个提交包含在:
int2001 2023-07-16 12:43:13 +00:00
父节点 6aab4f7bbc
当前提交 1857151ba4

查看文件

@ -943,6 +943,7 @@ $(document).on('keypress',function(e) {
$.ajax({ url: dxcluster_provider+"/spot/"+$("#frequency").val()/1000, cache: false, dataType: "json" }).done(
function(dxspot) {
$("#callsign").val(dxspot.spotted);
$("#callsign").trigger("blur");
}
);
});