Jump to content

[SOLVED] Textarea always scroll


Guest

Recommended Posts

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

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.