If the textarea contains tags (such as <div>, <span>, etc tags), when it
will get transformed with .wysiwyg() the tags will be lost.
This happenes because you use .text() instead on .html().
The line with the problem is located at line376:
"this.initialContent = $(element).text();"
and it should be changed to:
this.initialContent = $(element).html();
* I've also attached a corrected version of the js.
Original issue reported on code.google.com by blindatt...@gmail.com on 5 Feb 2009 at 10:10
Original issue reported on code.google.com by
blindatt...@gmail.com
on 5 Feb 2009 at 10:10Attachments: