JQuery

How to remove   from texteditor in jQuery?

How to remove   from texteditor in jQuery?, someone asked me to explain?

When I bind to a texteditor css design was collapsed because of   .so that I would like to remove any   from the block of HTML.

Example:

var htmlstring =   $("#textareaCode").html().replace(/( )*/g, "");

 

this code working fine.

Post your comments / questions