Not a problem. I see you've added the DIV:
Code:
<div id="newBox">Here's the new box.</div>
to contain the desired corresponding description. Based on that setup, first, find the below line inside the .js file, and add to it the line in red:
Code:
slidernodes[sliderid][thepage].style.display="block" //show selected DIV
document.getElementById("newBox").innerHTML=description[thepage]
Then on your HTML page within your initilization code, add an array description containing the descriptions you wish to be shown in that order, for example:
Code:
<script type="text/javascript">
var description=new Array()
description[0]="This is description for 1"
description[1]="This is description for 2"
description[2]="This is description for 3"
"
//Define: ContentSlider("slider_ID", [autorotate_miliseconds], [custompaginatelinkstext], [customnextlinktext])
ContentSlider("slider1", 5000)
//OR ContentSlider("slider1")
//OR ContentSlider("slider1", 3000)
//OR ContentSlider("slider1", 3000, linktextarray)
//OR ContentSlider("slider1", 3000, linktextarray, "Foward")
//OR ContentSlider("slider1", "", linktextarray)
//OR ContentSlider("slider1", "", "", "Foward")
</script>
That should do it.
Bookmarks