Hi,
I am getting the following html from a query result. Remember result is a string.
Code:
<table width=100% border=0 cellpadding=0 cellspacing=0>
<tr>
<th class=Sub>#</th>
<th class=Sub>File Name</th>
<th class=Sub>Size</th>
<th class=Sub>Date</th>
</tr>
<tr>
<td width=40 align=right class=Data1>1.</td>
<td class=Data1><a target=_blank href="/files/spool/404048/1075954/80_1267615_1075954/Sivaratnam_Suthakaran,_Dr._Peter_Cobrin,_Jan_20_2012,_IME_Guideline_Kit.pdf">Sivaratnam_Suthakaran,_Dr._Peter_Cobrin,_Jan_20_2012,_IME_Guideline_Kit.pdf</a> </td>
<td align=right width=85 class=Data1>22 KB</td>
<td align=right width=140 class=Data1>02/04/2012 8:5am</td>
</tr>
</table>
How can I replace all “_“ in second td’s
text of every row with a space using Jquery?
Thanks