Is it possible to have multiple stickyfloat elements that follow each other up?
For example, I have multiple articles with large images and I would like the description to stay sticky until you reach the next article. Currently, all the stickyfloat elements become sticky when the first one does... Here's a demo:
The code snippet I used is:
$(function() {
$( ".post header" ).each(function() {
$(this).stickyfloat( { duration: 400 } );
});
});