I have a set of divisions;
<div id="people">
<div>
<p>Joe Blogs</p>
<img src=".." />
</div>
<div>
<p>Jane Doe</p>
<img src=".." />
</div>
</div>
I want to be able to have an input text box, which when typed in, it will search through the divisions (in the p tag) and if the string matches in part or whole it will show the division, otherwise hide all the non matching divisions.
How would I best go about this using jQuery?
Many thanks?
` element. Also, can you show the code you have so far.
– Rory McCrossan Jan 09 '13 at 10:16