i need to remove "/n" within the text, before html tags, for example text in source looks like this:
"<font size="7">
sdfsdfsfs</font>"
but i need this source text to be in one line:
"<font size="7">sdfsdfsfs</font>"
this is need for one JavaScript, otherwise its isnt working..
trim() is removing from the beginning and end of a string but not within it. What to do?
"<font size="7">
sdfsdfsfs</font>"
but i need this source text to be in one line:
"<font size="7">sdfsdfsfs</font>"
this is need for one JavaScript, otherwise its isnt working..
trim() is removing from the beginning and end of a string but not within it. What to do?