Empty
This method clears all slides from the slide show. Note that the view port does not have a height set due to progressive enhancement keeping it flexible.
var kitten = $("#emptyKitten").carrotCell();
var kittenAPI = $(kitten).data("carrotCell");
$("#emptyKittenAction").bind("click", function(){
kittenAPI.empty();
});
ReloadWith
Use this API method to replace the entire slide show with new content.
Pass reloadWith all the elements of the slide show. Note that there is no error checking on what is passed in. Also when reloading on an auto scrolling carrotCell strange behavior might occur.
var reloadKitten = $("#reloadKitten").carrotCell();
var reloadKittenAPI = $(reloadKitten).data("carrotCell");
$("#reloadKittenAction").bind("click", function(){
reloadKittenAPI.reloadWith('reload 1
reload 2
reload 3
reload 4
reload 5
reload 6
reload 7
reload 8
reload 9
');
});