Backend for songs.zachdecook.com
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
$(function(){
	$("#toc-filter").bind("change paste keyup", toc_filter);
});

function toc_filter( event )
{
	var val = $(this).val().toLowerCase();
	$("#toc li").each(function(){
		if($(this).text().toLowerCase().indexOf(val) == -1)
		{
			$(this).hide();
		}
		else
		{
			$(this).show();
		}
	});
}