Textarea bind change event - http://stackoverflow.com/a/11338644/1703124
$('#textareaID').bind('input propertychange', function() { $("#yourBtnID").hide(); if(this.value.length){ $("#yourBtnID").show(); } });