0
Q:

jquery detect textarea change

$('#myTextAreaID').on('input propertychange paste', function() {
    //my Textarea content has changed
});
1
$('#textareaID').bind('input propertychange', function() {

      $("#yourBtnID").hide();

      if(this.value.length){
        $("#yourBtnID").show();
      }
});
0

New to Communities?

Join the community