I\'m attempting to add this .click function to each image I\'m sorting with the quicksand plugin for jQuery
$(\'li img\').click(function() { var vertica
Instead of .click use .live('click',function(){}); This will re-bind to the event as they're being moved/cloned throughout the DOM (as long as your selector doesn't change).
.click