Just wondering, this might be a really easy one… how to add more elements to the anythingFader? It has 6 now, is it simply increasing a number here in the jquery function? Or is there a little more to it?!
$(function () {
$(‘.anythingFader’).anythingFader({
autoPlay: true, // This turns off the entire FUNCTIONALY, not just if it starts running or not.
delay: 18000, // How long between slide transitions in AutoPlay mode
startStopped: false, // If autoPlay is on, this can force it to start stopped
animationTime: 1500, // How long the slide transition takes
hashTags: true, // Should links change the hashtag in the URL?
buildNavigation: true, // If true, builds and list of anchor links to link to each slide
pauseOnHover: true, // If true, and autoPlay is enabled, the show will pause on hover
startText: “Go”, // Start text
stopText: “Stop”, // Stop text
navigationFormatter: formatText // Details at the top of the file on this use (advanced use)
});
$(“#slide-jump”).click(function(){
$(‘.anythingFader’).anythingFader(6);
});
//************I have just changed one number, I could have tried that first, works nicely!!!
});