// filter field
$("input#searchTerm").on("keyup", function(){
var inputValue = $(this).val().toLowerCase();
if(inputValue)
$("nav.link-list").each(function(){
var brand = $(this).children("a").attr("title");
$(this).filter(function(){
if (brand.toLowerCase().indexOf(inputValue) > -1) {
$(this).fadeIn(800);
} else {
$(this).fadeOut(300,function(){
if($("nav.link-list:visible").length === 0) {
$(".page-content").append("<p>Sorry, no matched result is found, please try again.</p>");
}
});
}
}); // end of .filter()
}); // end of .each()
}); // end of .on(keyup)