Possible Duplicate:
Remove non breaking space ( ) from between elements using jquery
How to write a script to trim white space/tab between two element?
For example,
<tr> <td>A </td> <td>B </td> <td>C </td> </tr>
Convert to,
<tr><td>A </td><td>B </td><td>C </td></tr>
For the example, the script should remove the white space/tab between first <td>xxx</td> element and second <td>xxx</td> element and so on.
Thanks