Hello, this is what I am planning to do. Suppose I have a list of names (in DIVs)
<div class="person">
Mike Mulky
</div>
<div class="person">
Jenny Sun
</div>
<div class="person">
Jack Kickle
</div>
I would like a text box, where the user can type "Jenny", and filter out the DIV's with "Jenny" in them.
What JQuery plugin can allow me to do this? Or, if you know something easier :) Thanks.