I wish to give my users only vertical scroll and that too up to a automatically calculated height, not up to the entire length of the page.

Is it possible to fix the limit of vertical scroll that i wish to give to users. can it be done by jQuery. ???

link|improve this question

Do you mean you want an element in the page to be a fixed height and have only a vertical scroll bar? – nwellcome Jul 18 '11 at 16:44
1  
Consider setting the overflow css of your body element to hidden and the height to whatever you want the user to be able to scroll. I don't know why you'd want to do this, though. – Nick Husher Jul 18 '11 at 16:46
@TelsaNick i am making a vertical and horizontal scrolling site. So, i wish to allow the user to see the content below one page which is infact another page only if he clicks the corresponding link – Prashant Singh Jul 18 '11 at 17:08
feedback

2 Answers

You can have a div with static height and overflow-y:auto

This will show the scrollbar only when the content inside the div goes beyond the static height

div
{
  height:400px;
  overflow-x:hidden;
  overflow-y:auto;
}
link|improve this answer
feedback
up vote 0 down vote accepted

I did this part by hiding the underlying div and showing it just before I need it. So, I don't need to set the vertical scroll to a particular height.

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.