JonaNathali
JonaNathali

Reputation: 177

disable textarea resize handlers jQuery css

How do I disable textarea resizing handler in jQuery?

function textArea(){
    $("#textarea").css("resize",none); // not working
}

Upvotes: 0

Views: 2916

Answers (1)

imbondbaby
imbondbaby

Reputation: 6411

Try this:

$('textarea').click(function () {
    $(this).css('resize', 'none');
});

JSFiddle Demo

You were missing " after $("#textarea

And you need to wrap none around " or '

Upvotes: 3

Related Questions