Jquery Set Interval does not work in Chrome -
i have issue slyding pictures on site. slides automatically while entering site. after 1st slide, 2nd slide not work automatcally, can check on site:
function resetinterval () { clearinterval(gallerysliderinterval); gallerysliderinterval = setinterval(next, 3000); } function next () { $('.homepage_slider').animate({left: '-830px'}, 1000, function () { $('.homepage_slider').css({left: '0px'}).children(':first').remove().appendto($('.homepage_slider')); }); } function previous () { $('.homepage_slider').css({left: '-830px'}).children(':last').remove().prependto($('.homepage_slider')); $('.homepage_slider').animate({left: '0px'}, 1000); }
Comments
Post a Comment