How do I update the value in one text box (txtInterest%) based on the value entered/changed in another text box (txtAmt)?
txtInterest%
txtAmt
This should work assuming txtAmt and txtInterest% are ids on your page:
id
$(function() { $('#txtAmt').change(function() { $('#txtInterest%').val(this.value); }); });
See jQuery's change event handler.