mike
mike

Reputation: 25

Jquery Boxy textarea value

I've got a textarea called fou in my Boxy popup. How do I get the value of the text once the user has clicked a Submit button in the popup? I thought $('textarea[id$=fou]').val() wold do the trick but no.

Ideas?

Upvotes: 0

Views: 131

Answers (1)

Kyle
Kyle

Reputation: 22258

$('#fou').val();

or

$('textarea[id="fou"]').val();

Upvotes: 0

Related Questions