slides.js causing unpredictable behavior

bykarizma07

New Member
I'm using slides.js in a website, and the page so far is supposed to look like this:
1dVB1.png
But about 1/4 times the page loads, it instead looks like this:
gpx5F.png
Here's my jQuery:\[code\]$(document).ready(function() { $('#slides').slidesjs({ width: 860, height: 250, pagination: false, generatePagination: false, navigation: { active: false }, play: { active: false, effect: "fade", interval: 7000, auto: true, pauseOnHover: false }, effect: { fade: { speed: 2000 } } });});\[/code\]And the HTML is just the slides.js standard:\[code\]<style> #slides { display: none; } .container { margin: 0 auto; width: 860px; }</style><div class="container"> <div id="slides"> <img /> </div></div>\[/code\]This is unfathomable annoying. It would be nice if this problem would at least be consistent.
 
Back
Top