Quicksand

Reorder and filter items with a nice shuffling animation.

Examples

Advanced: Ajax call

Webbies: Brits Developers Westerners Designers Legends

  • Webby andy budd
  • Webby andy clarke
  • Webby dan benjamin
  • Webby dan cederholm
  • Webby dan rubin
  • Webby dave shea
  • Webby doug bowman
  • Webby eric meyer
  • Webby jeffrey zeldman
  • Webby jeremy keith
  • Webby jon hicks
  • Webby jonathan snook
  • Webby shaun inman
  • Webby veerle duoh

JavaScript

$(function() {
  $('#load-webbies a.button').click(function(e) {
    $.get( $(this).attr('href'), function(data) {
        $('.webbies').quicksand( $(data).find('li'), { adjustHeight: 'dynamic' } );
    });  
    e.preventDefault();  
  });
});