1$('#textareaID').bind('input propertychange', function() {
2
3 $("#yourBtnID").hide();
4
5 if(this.value.length){
6 $("#yourBtnID").show();
7 }
8});
1$('#myTextAreaID').on('input propertychange paste', function() {
2 //my Textarea content has changed
3});