Search

Bind change event of a textarea JQuery


Description
Detect when the textarea content changes.


$('#my_textarea_id').keyup( function(e) {
    let text = $(this).val();
    console.log( text );
});
SEE ALSO