there are several list filters in jquery (quicksand, filterprojects, etc.), but I am looking to filter divs by class.
I want the same functionality of the above – you select a menu item attached to a class and the other items fade out.
Anyone seen anything like this anywhere?
I ended up using:
});
});
});
});
and then:
Which works great, except due to the jquery.masonry.js layout, the areas where the div fades out, there is now an empty spot. I need to figure out how to reload masonry for each onclick so that the remaining items are shuffled into a new layout.
thoughts on that?
and thanks for the help!