I'm trying to get a rich text editor in a jquery dialog box. I'm currenty trying tiny mce. When I don't initialize tiny mce the text area displays the text with the HTML characters.
When I do initialize tiny mce nothing is displayed in the text area. Any ideas on how to get a text editor in the dialog box?
<textarea id="reason" rows="8" cols="35" name ="reason">test</textarea>
tinyMCE.init({
mode:"textareas",
theme:"advanced",
});