From the change event of a textbox in a td, I want to find a div whose classname = 'licenseStatus' in another cell within the row in which the textbox resides but can't seem to figure it out...
$('#gridRequestedApps .xxxAppName').change(function() {
var licenseOutputCell = $(this).parent('tr').find(".licenseStatus");
alert(licenseOutputCell.text()); // is an empty string
});