Answers for "get the text every time update the textarea jquery"

2

jquery get textarea text

$('input#mybutton').click(function() {
    var text = $('textarea#mytextarea').val();
    //send to server and process response
});
Posted by: Guest on May-30-2020
0

jquery detect change in textarea content

$('#textareaID').bind('input propertychange', function() {

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

      if(this.value.length){
        $("#yourBtnID").show();
      }
});
Posted by: Guest on July-26-2020

Code answers related to "get the text every time update the textarea jquery"

Code answers related to "Javascript"

Browse Popular Code Answers by Language