Hi, In Firefox and IE there is a problem with the radeditor.
When I enter a text without an enter and look at the code it will say:
test
When I enter a text and end with an enter and look at the code it will say:
<p>test</p>
<p> </p>
This is wrong behaviour....
When I look in Chrome it is correct.
When I enter a text without an enter and look at the code it wil say:
<p>test</p>
When I enter a text and end with an enter and look at the code it wil say:
<p>test</p>
<p><br />
</p>
Which seems far better according to me. It will always give you a <p> tag around your text, and it will not result in unwanted spaces.
So how can I get the same result in IE and FF?