I am developing a simple webmail client and using CKEditor within it for composing replies and messages. When replying to a message I preload the CKEditor with the messages text, I wrap each of the replies in the chain in the HTML below.
<div class="replyForwardMessage">
<br />
<br />
<br />
<span class="replyForwardDivider">Blah Blah Blah</span><br /><blockquote>Some Text</blockquote>
</div>
If I start entering text into the CKEditor the following happens:
<div class="replyForwardMessage">Test Text Line 1</div>
<div class="replyForwardMessage"> </div>
<div class="replyForwardMessage">Test Text Line 2<br />
<br />
<br />
<br />
Is there a way to do either A:) not have the text be wrapped in a <div> at all or B:) if does need to wrap the text, it does not use the class?
Thanks,