xxxxxxxxxx
$('#myTextAreaID').on('input propertychange paste', function() {
//my Textarea content has changed
});
xxxxxxxxxx
$('#textareaID').bind('input propertychange', function() {
$("#yourBtnID").hide();
if(this.value.length){
$("#yourBtnID").show();
}
});