textarea change event code example
Example 1: dropdown option selection change event in jquery
$("select [name='element_name']").change(function(){
// condition goes here
});
Example 2: jquery detect change in textarea content
$('#textareaID').bind('input propertychange', function() {
$("#yourBtnID").hide();
if(this.value.length){
$("#yourBtnID").show();
}
});
Example 3: jquery detect textarea change
$('#myTextAreaID').on('input propertychange paste', function() {
//my Textarea content has changed
});