I've heard that utilizing sprites can help improve page load times by reducing the number of HTTP requests.
How does this concept apply to jQuery sliders? Do jQuery sliders preload all images upon initial page load, or do they load images as required? Is it feasible or advisable to incorporate sprites into jQuery sliders?
In case anyone is curious, the slider I'm currently using is: https://github.com/maelstrom/SecretSource
The basic HTML setup looks like this:
<div id="banner-fade" class="responsive-container img-polaroid">
<ul class="slideshow">
<li><img src="img/slider/image1.jpg" alt=""></li>
<li><img src="img/slider/image2.jpg" alt=""></li>
<li><img src="img/slider/image3.jpg" alt=""></li>
</ul>
</div>