使用 Isotop 过滤日期

Using Isotop to filter on date

我有一个 table 按同位素 JS 排序和过滤的。我想按日期添加过滤器,以显示日期选择器选择的两个日期之间的结果。
知道怎么做吗?

谢谢

使用自定义过滤功能-

$grid.isotope({ filter: function() {
  var date= $(this).find('.date').text();
  return (date comparison here);
} })