Created
September 12, 2013 13:20
-
-
Save uhtred/6537156 to your computer and use it in GitHub Desktop.
JS: Full Text Search CSS
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <html> | |
| <head> | |
| <title></title> | |
| </head> | |
| <body> | |
| <h1>Full Search Text CSS</h1> | |
| <p>Based on <a href="http://redotheweb.com/2013/05/15/client-side-full-text-search-in-css.html">rançois Zaninotto Solution</a>F</p> | |
| <input type="text" placeholder="search" id="search"> | |
| <ul class="contacts"> | |
| <!-- Add text to the data-index attribute to enable full-text search --> | |
| <!-- Don't forget to lowercase it to make search case-insensitive --> | |
| <li class="searchable" data-index="onabednarschamberger.frank@wuckert.com1-265-479-1196x714"> | |
| <dl> | |
| <dt>First Name</dt><dd>Ona</dd> | |
| <dt>Last Name</dt><dd>Bednar</dd> | |
| <dt>Email</dt><dd>schamberger.frank@wuckert.com</dd> | |
| <dt>Phone</dt><dd>1-265-479-1196x714</dd> | |
| </dl> | |
| </li> | |
| <li class="searchable" data-index="newtoncronintorphy.dorothea@gmail.com(121)644-5577"> | |
| <dl> | |
| <dt>First Name</dt><dd>Newton</dd> | |
| <dt>Last Name</dt><dd>Cronin</dd> | |
| <dt>Email</dt><dd>torphy.dorothea@gmail.com</dd> | |
| <dt>Phone</dt><dd>(121)644-5577</dd> | |
| </dl> | |
| </li> | |
| <!-- add as much data as you want --> | |
| </ul> | |
| <style id="search_style"></style> | |
| <script type="text/javascript"> | |
| var searchStyle = document.getElementById( 'search_style' ); | |
| document.getElementById( 'search' ).addEventListener( 'input', function() { | |
| if ( !this.value ) { | |
| searchStyle.innerHTML = ""; | |
| return; | |
| } | |
| // look ma, no indexOf! | |
| searchStyle.innerHTML = ".searchable:not([data-index*=\"" + this.value.toLowerCase() + "\"]) { display: none; }"; | |
| // beware of css injections! | |
| }); | |
| </script> | |
| </body> | |
| </html> | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment