From 453de173bf790a173c6fd6dfb63a01411128bc39 Mon Sep 17 00:00:00 2001 From: Peter Goodhall Date: Mon, 16 Mar 2020 17:45:28 +0000 Subject: [PATCH] forgot to clear the table body when loading new qsos --- application/views/interface_assets/footer.php | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/application/views/interface_assets/footer.php b/application/views/interface_assets/footer.php index f8b02d1e..f3bb51ba 100644 --- a/application/views/interface_assets/footer.php +++ b/application/views/interface_assets/footer.php @@ -911,12 +911,8 @@ $(document).ready(function(){ items.push( "" + item.COL_TIME_ON + "" + item.COL_CALL + "" + item.COL_MODE + "" + item.COL_BAND + "" ); } }); - - $( "", { - "class": "my-new-list", - html: items.join( "" ) - }).appendTo( "body" ); + $("#grid_results tbody").empty(); $("#grid_results tbody").append(items.join( "" )); });