InterviewSolution
Saved Bookmarks
| 1. |
How To Make The Gallery Go To A Specific Image Using Mootools? |
|
Answer» Just USE the goTo function. But remember that its argument is an integer starting from 0 and not 1. For EXAMPLE, to make it skip to the fifth image, use this CODE: myGallery.goTo(4); Just use the goTo function. But remember that its argument is an integer starting from 0 and not 1. For example, to make it skip to the fifth image, use this code: myGallery.goTo(4); |
|