change value of a field on change another javascript code example

Example 1: jQuery checkbox changed event

//jQuery listen for checkbox change
$("#myCheckBoxID").change(function() {
    if(this.checked) {
        //I am checked
    }else{
        //I'm not checked
    }
});

Example 2: jquery detect change in textarea content

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

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

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

Example 3: javascript input value change

function updateInput(ish){
    document.getElementById("fieldname").value = ish;
}

Tags:

Html Example