I\'m trying to turn off textarea resizing in my site; right now I\'m using this method:
.textarea { clear:left; min-width: 267px; max-width: 267px;
As per the question, i have listed the answers in javascript
By Selecting TagName
document.getElementsByTagName('textarea')[0].style.resize = "none";
By Selecting Id
document.getElementById('textArea').style.resize = "none";