I am looking for a functionality just like cpanel search. Where as you type in search box, the similar content stays and rest disappears. Example
<div>hello</div>
<div>world</div>
<div>good</div>
<div>bad</div>
<input type="text" name="search">
Now as I start typing “he”. Only hello display and rest of the divs goes to display:none;
Is it possible? People who have seen Cpanel search box, knows what I am asking. I have been looking around for this but could not find anything similar to it. Thanks in advance.
Sure pretty simple, just use the
keyupeventand toggle the<div>‘s accordinglyjsFiddle
HTML
JS