diff --git a/web-app/index.html b/web-app/index.html
index 4d6905e..13dd9a2 100644
--- a/web-app/index.html
+++ b/web-app/index.html
@@ -1523,6 +1523,11 @@
Stay Updated
}
});
});
+document.querySelectorAll('.tab, .sticky-tab').forEach(function(tab) {
+ tab.addEventListener('click', function() {
+ searchInput.value = '';
+ });
+});