Skip to content

stcorbett/jquery-livesearch

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 

Repository files navigation

jQuery Live Search

Simple live search for content on web pages.

Usage

$('input[name="q"]').search('.searchable', function(on) {
  on.reset(function() {
    $('.searchable').show();
  });

  on.empty(function() {
    $('#empty-message').show();
  });

  on.results(function(results) {
    $('.searchable').hide();
    results.show();
  });
});

View the example at http://thunder-app.heroku.com

Releases

No releases published

Packages