I am adding rows to my table and the address will be a concatenation of Street, City, State, and Zip. Right now I have this.
$tr.find('.name').text($('#txtPropName').val());
$tr.find('.address').text($('#txtPropAddress', ", ", '#txtPropCity', " ", '#txtPropState', " ", '#txtPropZip').val());
$tr.find('.phone').text($('#txtPropHPhone' + "<br/>" + '#txtPropWPhone').val());
No luck on either phone or address. Any ideas?