Search using css with demo
Search using css with demo
Dynamic stylesheet with a CSS3 selector for search, implement a client-side full-text search in CSS rather than JavaScript. Here is an example
Searchable List example:
This file contains 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
<style id="search_style"></style> | |
<ul class="contacts"> | |
<!-- Data generated by Faker, see https://github.com/fzaninotto/Faker --> | |
<li class="contact searchable" data-index="suneel2you@gamil(9703678559"> | |
<dl> | |
<dt>First Name</dt> | |
<dd>suneel</dd> | |
<dt>Last Name</dt> | |
<dd>kumar</dd> | |
<dt>Email</dt> | |
<dd>suneel2you@gmail.com</dd> | |
<dt>Phone</dt> | |
<dd>+91-9703-678-559</dd> | |
</dl> | |
</li> | |
<li class="contact searchable" data-index="chkarthikv@gmail.com(9133311907)"> | |
<dl> | |
<dt>First Name</dt> | |
<dd>karthik</dd> | |
<dt>Last Name</dt> | |
<dd>veerababu</dd> | |
<dt>Email</dt> | |
<dd>chkveerababu@gmail.com</dd> | |
<dt>Phone</dt> | |
<dd>(+91)-913-3311-907</dd> | |
</dl> | |
</li> | |
</style> |
Search Code:
This file contains 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
<input type="text" placeholder="search" id="search"> | |
<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> |
Demo
-
- First Name
- suneel
- Last Name
- kumar
- suneel2you@gmail.com
- Phone
- +91-9703-678-559
-
- First Name
- karthik
- Last Name
- veerababu
- chkveerababu@gmail.com
- Phone
- (+91)-913-3311-907
-
- First Name
- srinu
- Last Name
- chilukuri
- srinuch@gmail.com
- Phone
- 040-240-1123
-
- First Name
- rajkumar
- Last Name
- p
- rajkumra@live.com
- Phone
- +91-8617869414
-
- First Name
- lavanya
- Last Name
- sree
- bl.lavanya@gmail.com
- Phone
- (080)-490-0685
-
- First Name
- anil
- Last Name
- kumar
- anil2u@gmail.com
- Phone
- +91-373-384-350
-
- First Name
- Kennith
- Last Name
- Littel
- smitham.amelia@gmail.com
- Phone
- 863.712.1363x9425