Disable the drag-to-expand feature for textarea

In css
textarea {
  resize: none;
}
You could also set this programmatically by using jQuery:
// CSS
textarea.no-expand {
  resize: none;
}

// jQuery
$('#my-text-area').addClass('no-expand');

0 comments:

Post a Comment