jQuery scrollTop doesn't animate -


having issue jquery scrolltop won't animate @ all.

this code.

function nextsection() {         var counter = $('.current .subpage').size();     var $this = $('.current > .subcurrent');     if(settings.subcount != counter) {         $this.next().addclass('subcurrent');         $this.removeclass('subcurrent');         settings.subcount++;         $('.current').stop().animate({scrolltop : $this.next().offset().top}, settings.speed, settings.easing);      }  }   function prevsection() {     var counter = $('.current > .subpage').size();     var $this = $('.current > .subcurrent');             if(settings.subcount != 1) {         $this.prev().addclass('subcurrent');         $this.removeclass('subcurrent');         settings.subcount--;         $('.current').stop().animate({scrolltop : $this.offset().top}, settings.speed, settings.easing);         }  } 

these functions set engage on key , down,

scrollleft works following code.

$this.prev().addclass('current'); $this.removeclass('current'); settings.count--;   elements.page.stop().animate({scrollleft :   $('.current').offset().left}, settings.speed, settings.easing); 


Comments

Popular posts from this blog

java - Play! framework 2.0: How to display multiple image? -

gmail - Is there any documentation for read-only access to the Google Contacts API? -

php - Controller/JToolBar not working in Joomla 2.5 -