1) Script Title: Step Carousel Viewer v1.9
2) Script URL (on DD): http://www.dynamicdrive.com/dynamici...epcarousel.htm
3) Describe problem: I can't get this to setup properly. It seems that the document.ready() is never getting triggered.
my link to the stepcarousel.js is working and the css is in place properly
I am running this in a .NET page
here is my code snippet
I can't figure out why this is happening. Also is there a version of the script WITHOUT the jQuery.noConflict()? I am not using any other libraries besides jQuery-1.3.2Code:<script type="text/javascript" language="javascript"> stepcarousel.setup({ galleryid: 'homepagebanners', beltclass: 'belt', panelclass: 'panel', autostep: { enable: true, moveby: 1, pause: 3000 }, panelbehavior: { speed: 500, wraparound: false, wrapbehavior: 'pushpull', persist: true }, defaultbuttons: { enable: true, moveby: 1, leftnav: ['../Assets/images/home/opencircle.png', -5, 80], rightnav: ['../Assets/images/home/opencircle.png', -20, 80] }, statusvars: ['statusA', 'statusB', 'statusC'], contenttype: ['inline'] }) </script> <div id="homepagebanners" class="stepcarousel"> <div class="belt"> <div class="panel"> <img src="<%= ResolveClientUrl("~/Assets/images/home/12V-Banner.jpg") %>" /> </div> <div class="panel"> <img src="<%= ResolveClientUrl("~/Assets/images/home/20VMax-Banner.jpg") %>" /> </div> <div class="panel"> <img src="<%= ResolveClientUrl("~/Assets/images/home/Accessories-Banner.jpg") %>" /> </div> <div class="panel"> <img src="<%= ResolveClientUrl("~/Assets/images/home/HandTools-Banner.jpg") %>" /> </div> <div class="panel"> <img src="<%= ResolveClientUrl("~/Assets/images/home/Polishers-Banner.jpg") %>" /> </div> </div> </div> <p id="homepagebanners-paginate" style="width: 250px; text-align: center"> <img src="<%= ResolveClientUrl("~/Assets/images/home/opencircle.png") %>" data-over="<%= ResolveClientUrl("~/Assets/images/home/graycircle.png") %>" data-select="<%= ResolveClientUrl("~/Assets/images/home/closedcircle.png") %>" data-moveby="1" /> </p>



Reply With Quote

Bookmarks