Guest Posted August 4, 2007 Share Posted August 4, 2007 Is there a wat that i can make atext area so that it always has scrollbars on it? Quote Link to comment Share on other sites More sharing options...
Hybride Posted August 4, 2007 Share Posted August 4, 2007 You can do it with CSS, where you can make something like this: textarea { width: x; height: x; overflow:scroll; } or with JS <script type="text/javascript"> function hideOverflow() { document.getElementById("div1").style.overflow="hidden"; } </script> There's more help with on http://www.w3schools.com/htmldom/prop_style_overflow.asp Quote Link to comment Share on other sites More sharing options...
Guest Posted August 4, 2007 Share Posted August 4, 2007 Thank You thats exactly what I needed. Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.