I have a script on the page that removes "tiles" using a filter.
Is it possible to re-align everything when tiles are removed?
This doesn't seem to be doing it:
$wrapper.masonry( 'reloadItems' );
I'm using the following to filter:
$('.tags:not(.tags:contains('+filter_text+'))').parent().fadeOut('slow');
Cheers!