Skip to content

Instantly share code, notes, and snippets.

@nowhereman
Created September 6, 2010 08:57
Show Gist options
  • Save nowhereman/566815 to your computer and use it in GitHub Desktop.
Save nowhereman/566815 to your computer and use it in GitHub Desktop.
Transform jsTree Search plugin into a Live Search
// To transform jsTree Search plugin (http://www.jstree.com/documentation/search)
// Into a live Filter/Search system, like http://ejohn.org/blog/jquery-livesearch
// TODO Add a QuickSilver/LiquidMetal support, maybe with the help of jsTree sort plugin
//$("div.jstree li").show(); // Clear search
$("div.jstree li").hide();
$("div.jstree li a[class=jstree-search]").parents("div.jstree li").show();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment