Mike Fielden
Mike Fielden

Reputation: 10153

Generically select a textarea

I am looking for a way to select a textarea from some element on the page via a jQuery selector but can't seem to figure it out.

Here is an example what I have tried:

JsFiddle

I would like to use the :input[type='blah'] but 'textarea' doesn't seem to be the correct syntax. Or possible create my own selector but Im not sure how to select just the textarea in the first place.

Upvotes: 1

Views: 456

Answers (1)

Lightness Races in Orbit
Lightness Races in Orbit

Reputation: 385405

A <textarea> is not an <input type="textarea">.

What's wrong with $('textarea')? (example)

Edit It's unfortunate that, while $(':input') will confusingly include textareas, there is no variant to select just textareas through it. I see now why you were confused. As above, just look for textarea elements directly.

Upvotes: 3

Related Questions