I'm having a little problem, when I use the jquery append to display elements returned from a php query.
Note: this is not the full append, it's a bit long and I've just put the part I need you to see.
$("#topics").append('<div class="topic_sumario">'+dados.sumario+'</div>')
The summary is a field in my table of topics that is added and edited with a textarea using tinymce, the problem is that when the append displayed the summary it is appearing all the html tags coming from tinymce, example:
It's like you're not recognizing tags and displaying everything as a string
I want you to recognize all the formatting that tinymce does, such as bold, italic, or the embed of a video etc ... but the way that being is not going to work