How to remove spaces after table

ZeRohiLL

New Member
How to remove spaces after a certain element? I have this code.\[code\]</table>"&nbsp;&nbsp;"\[/code\]The &nbsp are variable. I'm trying this.\[code\]$("table").each(function() { var text = $(this).children(); text = text.replace('"&nbsp;"', ""); $(this).text(text);});\[/code\]
 
Back
Top