Live Search Using JavaScript Source Code

In this tutorial we will create a Live Search using JavaScript. This code will search a specific keyword when the user enter some keyword in the textbox. The code use onkeyup() function to call a specific function that automatically search the data when entered, by the use of for() loop and adding an if statement with a sets of parameter indexOf() in order to filter the array of data. Feel free to modify and apply it in your system, this is a user-friendly kind of program We will be using JavaScript as a server-side scripting language because It gives a greater control of your web page and extend its capability in a modern way approach. It is written in HTML or as an external sourcing to add some necessary features in your website.

Getting started:

First you have to download bootstrap framework, this is the link for the bootstrap that I used for the layout design https://getbootstrap.com/.

The Main Interface

This code contains the interface of the application. To create this just write these block of code inside the text editor and save it as index.html.
  1. <!DOCTYPE html>
  2. <html lang="en">
  3.         <head>
  4.                 <meta charset="UTF-8" name="viewport" content="width=device-width, initial-scale=1"/>
  5.                 <link rel="stylesheet" type="text/css" href="css/bootstrap.css"/>
  6.         </head>
  7.         <nav class="navbar navbar-default">
  8.                 <div class="container-fluid">
  9.                         <a class="navbar-brand" href="https://sourcecodester.com">Sourcecodester</a>
  10.                 </div>
  11.         </nav>
  12.         <div class="col-md-3"></div>
  13.         <div class="col-md-6 well">
  14.                 <h3 class="text-primary">Live Search Using JavaScript Source Code</h3>
  15.                 <hr style="border-top:1px dotted #ccc;"/>
  16.                 <div class="col-md-8">
  17.                         <table class="table table-bordered">
  18.                                 <thead class="alert-info">
  19.                                         <tr>
  20.                                                 <th>Full Name</th>
  21.                                         </tr>
  22.                                 </thead>
  23.                                 <tbody id="result"></tbody>
  24.                         </table>
  25.                 </div>
  26.                 <div class="col-md-4">
  27.                         <div class="form-group">
  28.                                 <label>Enter a name</label>
  29.                                 <div class="input-group">
  30.                                         <div class="input-group-addon"><span class="glyphicon glyphicon-search"></span></div>
  31.                                         <input type="text" id="search" placeholder="Search here..." onkeyup="autoSearch()" class="form-control"/>
  32.                                 </div>
  33.                         </div>
  34.                 </div>
  35.         </div>
  36. <script src="js/script.js"></script>
  37. </body>
  38. </html>

Creating the Script

This code contains the script of the application. This code will live search a data when a keyword is entered. To do this just copy and write these block of codes inside the text editor, then save it as script.js inside the js folder.
  1. var members = ["John Smith", "Claire Temple", "Sarah Goat"];
  2.        
  3. displayList();
  4.  
  5.  
  6. function autoSearch(){
  7.         var search=document.getElementById('search').value.toLowerCase();
  8.         var parent=document.getElementById("result");
  9.         var children=parent.getElementsByTagName('tr');
  10.        
  11.         for(var i=0; i<children.length; i++){
  12.                 var keyword=children[i].innerText;
  13.                 if(keyword.toLowerCase().indexOf(search)>-1){
  14.                         children[i].style.display="";
  15.                 }else{
  16.                         children[i].style.display = "none";
  17.                 }
  18.         }
  19.        
  20. }
  21.  
  22.  
  23. function displayList(){
  24.         members.sort(function(a,b){
  25.                 if(a < b){
  26.                         return -1;
  27.                 }
  28.  
  29.                 if(a > b){
  30.                         return 1;
  31.                 }
  32.  
  33.                 return 0;
  34.         });
  35.        
  36.         data = "";
  37.        
  38.         for(var i=0; i < members.length; i++){
  39.                 data += "<tr><td>"+members[i]+"</td></tr>";
  40.         }
  41.        
  42.         document.getElementById('result').innerHTML = data;
  43. }
There you have it we successfully created a Live Search using JavaScript. I hope that this simple tutorial help you to what you are looking for. For more updates and tutorials just kindly visit this site. Enjoy Coding!

Add new comment