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
 
     
    