Is isotope filtering working for HTML Tables? What I want to do is filter using a search form, so my contacts list will be filtered based on the value of the search box . Here is my sample fiddle for this Fiddle and my sample code for isotope:
var $container = $('.rm-data').isotope({
// options
});
$('#search').on('keypress', function (e) {
if (e.which == 13) {
var query = $('#search').val();
$container.isotope({
filter: query
});
console.log(query);
}
});
Thanks for any suggestions.