I'm trying to recreate this image slider:
http://www.egrappler.com/contents/jsCarousel/demo/jsCarousel.htm
Except using more meaningful html. This page just uses a bunch of random divs, with more divs encapsulating the entire thing:
<div id="jsCarousel">
<div>Image</div>
<div>Image</div>
<div>Image</div>
</div>
I want my html to look more like:
<ul id="jsCarousel">
<li>Image</li>
<li>Image</li>
<li>Image</li>
</ul>
But I can't tell which div selector is what in the js source. For example, these three declarations:
var slider = $('<div/>').addClass('jscarousal');
var leftbutton = $('<div/>').addClass('jscarousal-left');
var rightbutton = $('<div/>').addClass('jscarousal-right');
I can't tell which divs in the html are being affected, so that I can change the divs to a ul or li. If it were just these three lines, I'm sure 10 minutes of guessing would get me where I need to be, but there is more like 30 places in the js file.
I have a feeling this is basic js/jquery, so I googled it, but couldn't find something that translated or taught me what I needed to know. Any javascript experts out there have a free minute to show me how to figure out which divs need to be ul's and which need to be li's?
Thanks in advance to anyone that can help!
--Mark