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:

http://happylife-travel.com

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

Popular posts from this blog

java.util.scanner - How to read and add only numbers to array from a text file -

rewrite - Trouble with Wordpress multiple custom querystrings -