Quicksand

Reorder and filter items with a nice shuffling animation.

Examples

Advanced: Ajax call

Webbies: Brits Developers Westerners Designers Legends

JavaScript

<script type="text/javascript">
  $(function() {
    $('#load-webbies a.button').click(function(e) {
      $.get( $(this).attr('href'), function(data) {
          $('.webbies').quicksand( $(data).find('li'), { adjustHeight: 'dynamic' } );
      });  
      e.preventDefault();  
    });
  });
</script>