3 months ago
This solution might be also good. It uses the built-in function:
imageSlider.display(slideIndex, true, true);
Read this post for details:
9 months ago
Bill, You have two ways to implement this.
You can implement it by server-side coding(such as PHP, ASP.NET) which will select which images you are going to show and build the slider's markup from server side before the page is rendered out.
If your page cannot build the markup from the server side, you can use javascript to build the slider markup after page load, and then call:
imageSlider.reload();
9 months ago
Yes you are right. I want selecting an image will navigate to another page which will have a slider that starts sliding from the selected image. The current service I am building for is a 'Static Site' so unfortunately a servier side script is not possible. I will take the second approach as you suggested. Thanks for your help!