When you use the removetags function on a html code it basically removes every html tag there is in the code. This however caused me a little bit of a problem, since it leaves many blank lines after removing the tags. For example this code:
Code:
<html>
<body>
<whatever tag you want>
<script>
</script>
would produce five blank lines. Do you know how to get rid of these blank lines? THanks for any help.

Q