I have a div with hight 300px I want to use slideDown or any of jquery methods to slide down a part of the div not all the 300px may be just 50px

link|improve this question
feedback

2 Answers

up vote 3 down vote accepted

Try this DEMO

$('#clickme').click(function() {
  $('#book').animate({
      top: '+=50',
      height: '-=50'
  }, 1000, function() {
      // callback on complete.
  });
});
link|improve this answer
feedback
$("#your_div").scrollTop(50)

isn't it right?

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.