This demonstrates how to remove the Fillmore'd image, after it has been applied. This is useful when working in a dynamic environment.
<script src="../lib/jquery-1.7.1.min.js"></script>
<script src="../jquery.fillmore.js"></script>
<script>
$.fillmore( { src: "pot-holder.jpg", speed: 500 } );
$( '.container' ).fillmore( { src: "coffee.jpg" } );
$("#applyBg").click(function() {
$.fillmore( { src: "pot-holder.jpg" } );
});
$("#removeBg").click(function() {
$.fillmore( "destroy" );
});
</script>