I want to disable the resizable property of a textarea.
textarea
Currently, I can resize a textarea by clicking on the bottom right corner of the
Inline Style:
In Cascading Style Sheet:
textarea { resize: none; }
In Javascript:
document.querySelector('.myTextArea').style.resize = 'none';
In jQuery:
$('.myTextArea').css({'resize': 'none'});