Horje

Tips (Total 2)


# Tips-1) How to create Javascript Live Search

Search some keywords hurry using javascript.

How to build a Java Script Live Search

See the Example and Learn More.
index.html
Example: HTML
<div class="container">
    <input type="text" class="live-search-box" placeholder="search here">
    <ul class="live-search-list">
      <li>This</li>
      <li>Is</li>
      <li>My</li>
      <li>Search</li>
      <li>With</li>
      <li>Black Jack</li>
      <li>and</li>
      <li>test</li>
      <li>bells</li>
    </ul>
  </div>

Output should be:

How to build a Java Script Live Search

# Tips-2) How to create a Simple Live Search Using Javascript

Create a simple Live Search.

Simple Example

See the Full Example.
index.html
Example: HTML
  <div class="container">
  <div class = "title">Search for username or name</div>
  <input type="search">
  <div class="placeholder">
  </div>
  </div>
</div>

Output should be: