Reputation: 177
How do I disable textarea resizing handler in jQuery?
function textArea(){
$("#textarea").css("resize",none); // not working
}
Upvotes: 0
Views: 2916
Reputation: 6411
Try this:
$('textarea').click(function () {
$(this).css('resize', 'none');
});
You were missing "
after $("#textarea
And you need to wrap none
around "
or '
Upvotes: 3