From 819d7bf02f1c7b119468c1353b78a3d3bb7015fe Mon Sep 17 00:00:00 2001 From: MrArmonius Date: Wed, 21 Jul 2021 21:22:29 +0200 Subject: New HTML Directory --- static/javascript/search.js | 16 +++++++++------- 1 file changed, 9 insertions(+), 7 deletions(-) (limited to 'static') diff --git a/static/javascript/search.js b/static/javascript/search.js index ea1e155..b82b232 100644 --- a/static/javascript/search.js +++ b/static/javascript/search.js @@ -1,8 +1,8 @@ function searchDirectory() { var input = document.getElementById("search").value; - - var xhttp = new XMLHttpRequest(); - xhttp.onreadystatechange = function() { + if(input){ + var xhttp = new XMLHttpRequest(); + xhttp.onreadystatechange = function() { if (this.readyState == 4 && this.status == 201) { // Typical action to be performed when the document is ready: //Response from Request Ajax @@ -26,10 +26,12 @@ function searchDirectory() { } old_table.parentNode.replaceChild(table, old_table) } - }; - xhttp.overrideMimeType("application/json"); - xhttp.open("GET", "/search/".concat(input), true); - xhttp.send(); + }; + xhttp.overrideMimeType("application/json"); + xhttp.open("GET", "/search/".concat(input), true); + xhttp.send(); + } + -- cgit v1.2.3