0
How to make a working search bar?
Like when you have a website and you want to put a working search bar that will search for the content of your website and will redirect the page to it.
2 Answers
+ 12
If it's a single page or small website then you'd be good to go with JavaScript, see this code as an example: https://code.sololearn.com/WDgz98tos3U9/?ref=app
But if it's a big website, most likely it is going to be with a server-side script. A script like this could be index-based or non-index-based. For example, you could write a search engine script with JavaScript and PHP that uses MySQL to store your website's indexed pages and the search results could be loaded with Ajax.
+ 8
I would recommend you to get the search input with Javascript, then compare it with every content supposed to be searched (arrays and loops) in your website