JSFiddle - React, Tailwind, and code Playground
HTML
<body>
<div id="divInfraAreaTabela" class="infraAreaTabela">
<div id="divTabelaRecebido">
<table id="tblProcessosRecebidos" border="0" cellspacing="0" cellpadding="1" class="infraTable tabelaProcessos" summary="Tabela de Processos Recebidos.">
<caption class="infraCaption">6 registros:</caption>
<tr>
<th class="tituloProcessos" width="5%" align="center">
<label id="lblInfraCheck" for="lnkInfraCheck" accesskey=";"></label>
<a id="lnkInfraCheck" onclick="infraSelecaoMultipla('Recebidos');" tabindex="1008"><img src="/infra_css/imagens/check.gif" id="imgRecebidosCheck" title="Selecionar Tudo" alt="Selecionar Tudo" class="infraImg" /></a>
</th>
<th class="tituloProcessos"> </th>
<th class="tituloProcessos">Recebidos</th>
<th class="tituloProcessos"> </th>
</tr>
<tr class="infraTrClara" style="border:0px solid white;">
<td align="center"><a id="lnkRecebidosID-726" name="ID-726"></a>
<input type="checkbox" id="chkRecebidosItem0" name="chkRecebidosItem0" onclick="infraSelecionarItens(this,'Recebidos');" class="infraCheckbox" value="726" title="53900.000245/2014-63" tabindex="1010" />
</td>
<td align="center"> </td>
<td align="center" class="processoVisualizado"><a onclick="abrirProcesso('controlador.php?acao=procedimento_trabalhar&acao_origem=procedimento_controlar&acao_retorno=procedimento_controlar&id_procedimento=726&infra_sistema=100000100&infra_unidade_atual=1482&infra_hash=47a1371b7e3310d8a9cd685c2908ddb641ad56224a288aba548478e67f804efe');" tabindex="1011" onmouseover="return infraTooltipMostrar('asdasdasd','ABONO DE PERMANÊNCIA EM SERVIÇO');" onmouseout="return infraTooltipOcultar();">53900.000245/2014-63</a>
...
JavaScript
// Cannot retrieve SRC inside IMG tag
$.each($('tr.infraTrClara'), function () {
// Post-It
var postit = $(this).children('td:nth-child(2)').select('img');
postit_src = $(postit).attr('src');
alert(postit_src);
});
// Can retrieve SRC inside IMG tag
$.each($('tr.infraTrClara td:nth-child(2) img'), function () {
// Post-It
var postit = $(this).attr('src');
alert(postit);
});