I'm using the jWYSIWYG editor for jQuery. It does some funky stuff with the HTML on newlines, inserting a <br> and then a <div> after a user hits Return twice.
Thus content that a user enters in a textarea to look like this:
Text
Text
Will actually appear like this upon submission:
Text
Text
Not what I, nor they, want. I've come up with a quick hack that seems to create more problems than it solves.
$body = str_replace("<br><br>", '<br>', $body);
$body = str_replace("<br>", '<br><br>', $body);
But this will break if a user wanted just one <br> or if they have three <br> tags.
Is there any clean and efficient way to have the user get the output they want?
rmUnwantedBroption ? it might be related to your issue. – Gaby aka G. Petrioli Nov 10 '10 at 11:14<div>tags as noted in my comment above. – Josh Smith Nov 11 '10 at 1:15