Discussion board
Scoll Bar
By Sandesh c j Chickmagular jatheendranath
How to add a scroll bar in a Webpage.
I would like to have an scroll bar on the left hand side of webpage after some text .

Thanks in Advance
Sandesh
Reply
Post   Reset
Sanjay S Nair replied to Sandesh c j Chickmagular jatheendranath Monday, October 19, 2009
Hi

See the below example :

<html>
<head><title></title></head>
<body>
<div style="width: 190px; height: 190px; overflow: scroll; padding: 5px">
<script language=javascript>
document.write("<form>");
for(i=1;i<=10;i++){
document.write("<input type=text value="+i+"><br>");
}
document.write("</form>");
</script>
</div>

</body>
</html>


Regards,

Sanjay S Nair