How to autoscroll div vertically
<div id=”mainbody”>
// inside this we are having long message
</div>
this will led the message go out of the div. In order to fix the message inside the div we must have another
div
<div id =”mainbody” style=”border:1px solid red;height:200px;width:200px;overflow:auto;”>
<div id=”msg”>
// long message
</div>
</div>
Here fix the width and make overflow auto in style attribute of the div.
December 26, 2008 at 1:55 am
well, hi admin adn people nice forum indeed. how’s life? hope it’s introduce branch
April 12, 2009 at 8:50 pm
cool tip, thanks