Below image is pointing the value of username (updatedBy) i.e 52038862. I want to print this value by calling the variable which stores this value. The value displayed in the table.
How to fetch the variable name and print this in javascript console. I need to display this value in some other pages. I am newly debugging the application. I am stuck at this point. Below is my jsp code.
<label>Approval History</label>
</div>
<div class="tile-body">
<div class="tableWrapAtX">
<table class="table">
<thead>
<tr>
<th>Date/Time</th>
<th>User</th>
<th>Email Address</th>
<th>Old Status</th>
<th>New Status</th>
<th>Comment</th>
</tr>
</thead>
<tbody>
<!-- ko foreach: approvalAuditTrail -->
<tr>
<td><span data-bind="text: updated"></span></td>
<td><span data-bind="text: updatedBy"></span></td>
<td><span data-bind="text: updatedByEmail"></span></td>
<td><span data-bind="text: oldStatus"></span></td>
<td><span data-bind="text: approvalStatus"></span></td>
<td><span data-bind="text: comments"></span></td>
</tr>
<!-- /ko -->
</tbody>
</table>
</div>
</div>
</div>

