The description field must remain, even if it is empty. To be on the safe side, use the no_descriptions directive as well. Links may follow the description field:
Code:
var slides=[]; //FIRST SLIDESHOW
//configure the below images and descriptions (if any) to your own, links for slides may follow descriptions.
slides[0] = ["photo1.jpg", "", "http://www.whatever.com/"];
slides[1] = ["photo2.jpg", "", "http://www.whatever.com/"];
slides[2] = ["photo3.jpg", "", "http://www.whatever.com/"];
slides[3] = ["photo4.jpg", "", "http://www.whatever.com/"];
slides[4] = ["photo5.jpg", "", "http://www.whatever.com/"];
slides.no_descriptions=1; //use for no descriptions displayed
The links can be whatever you like, they can each be different, they can just be to pages on your site relative to the page with this script on it (like an ordinary link href). If you want to target, that would be in the next field, ex (for a new window or tab):
Code:
slides[0] = ["photo1.jpg", "", "mypage.htm", "_blank"];
This and much more is all covered in the documentation. But I know it's a lot to take in. See the //THIRD SLIDESHOW example from the Step1 code block on the demo page.
Bookmarks