bgrins / ExpandingTextareas

jQuery plugin for elegant expanding textareas
http://bgrins.github.com/ExpandingTextareas/
MIT License
261 stars 73 forks source link

Listen to `change` event. #31

Closed iamdanfox closed 11 years ago

iamdanfox commented 11 years ago

Doesn't completely solve #30 because .val() doesn't trigger the change event, but does provide the workaround:

$('#myTextarea').val('Some new content').change();

DEMO: http://jsfiddle.net/CnRhG/

bgrins commented 11 years ago

Thanks!