I need to customize a data field within a table, but I am unable to locate or identify its div ID. Here is the page source:
<tbody>
<tr>
<td style="font-size:12px; text-align:center;" name="">
<div style="padding:0; margin:0;">Ford</div>
<div style="display:none; padding:0; margin:0;"></div>
</td>
<td style="font-size:12px; text-align:center;" name="">
<div style="padding:0; margin:0;">Crown Victoria</div>
<div style="display:none; padding:0; margin:0;"></div>
</td>
<td style="font-size:12px; text-align:center;" name="">
<div style="padding:0; margin:0;">1234JESS123456789</div>
<div style="display:none; padding:0; margin:0;"></div>
</td>
</tr>
</table>
I must implement the following JavaScript code on the last td.
<div id="output">ABC123DDD8877</div>
$('#output').html(($('#output').html()).replace(/[0-9]/gi, '<strong style="font-size:20pt">$&</strong>'))
Is there anyone who can assist me with this?