I have only one list div and I want to make it scrollable. I have seen scrollpane examples, it's great but I am looking for an smaller simpler alternative.
I appreciate any help.
Thanks.
I have only one list div and I want to make it scrollable. I have seen scrollpane examples, it's great but I am looking for an smaller simpler alternative.
I appreciate any help.
Thanks.
For Future readers ...
If jQuery
is must then you can do this by :
// Any one accordingly ...
$('#yourIdForDiv').attr('overflow','auto');
$('#yourIdForDiv').attr('overflowy','scroll');
$('#yourIdForDiv').attr('overflowx','auto');
inside a shorter?
– Nov 19 '10 at 15:24inside a
– Josh R Nov 19 '10 at 15:33