So I have a search on my site using JS. I am trying to figure out how to implement a "Recent Searches" category and "number of searches per hour" into my main page so people can see those.
Hi, Using js you won't be able to store the searched term, and if you cannot store, you cannot retrieve it. You'll need an Ajax function to pass the searched term to a "server side" scriptting language like php, or asp etc. That script can store the term along with the time, and then both these menus will be possible. Thanks