0

I have next HTML:

  <input type="text" id="search" name="searchword" value="" />
<ul id="search_list">
    <li>first</li>
    <li>second</li>
    <li>third
        <ul>
            <li>aaa</li>
            <li>bbbb
                <ul>
                    <li>111111</li>
                    <li>22222</li>
                    <li>3333</li>
                </ul>
            </li>
            <li>cccc</li>
        </ul>
    </li>
</ul>

And I want to search this list via input. I type text into input and <li> and <ul>'s which are not search result must hide.

Thank you very much and sorry for my bad English

Josiah Ruddell
  • 29,697
  • 8
  • 65
  • 67
Wizard4U
  • 3,997
  • 4
  • 19
  • 14