From d433bdbb155918378e49bb8c3fc3c93d91f1b16b Mon Sep 17 00:00:00 2001 From: PrestonT500 Date: Wed, 8 Jan 2025 20:32:24 -0800 Subject: [PATCH] Made search bar clear button worked --- .idea/workspace.xml | 19 ++++++++++++++++--- js/searchbar.js | 4 ++++ 2 files changed, 20 insertions(+), 3 deletions(-) diff --git a/.idea/workspace.xml b/.idea/workspace.xml index 6ba323e..0537606 100644 --- a/.idea/workspace.xml +++ b/.idea/workspace.xml @@ -4,8 +4,8 @@ + + + \ No newline at end of file diff --git a/js/searchbar.js b/js/searchbar.js index 27dc739..c3db131 100644 --- a/js/searchbar.js +++ b/js/searchbar.js @@ -10,4 +10,8 @@ $(document).ready(function() { } }); }); + $('#thing').on('click', function() { + $('#search-bar').val(''); + $('.filter-button').show(); + }); });