How to make filter list which respond on user type. For example this is the list of data from the database.
<input type="search" class="search" name="search">
<ul class="find">
<li>Bird</li>
<li>Cabbage</li>
<li>Cat</li>
<li>Dog</li>
<li>Eagle</li>
<li>Egg</li>
<li>Frog</li>
<li>Fist</li>
</ul>
I don't have any JavaScript or jQuery code to show because I don't know how to do it. What I want when a user type the first letter in the search box it will filter on the list. For example user type the first letter in the search box letter B it should filter all the list that start with letter B and it doesn't matter if the letter typed is big or small. Is there anyone who can help me with this? Thank you.