Reputation: 10153
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:
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
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 textarea
s, there is no variant to select just textarea
s through it. I see now why you were confused. As above, just look for textarea
elements directly.
Upvotes: 3