I have put tiny mce toolbar. I am new to use this. Although the tool bar 开发者_JS百科is coming for all text areas, the text area is not allowing to insert any content in it. Please let me know the correct way to implement tiny mce tool bar. And also please let me know how to insert tiny mce for only some of my text areas in the same program
This is a very simple, basic initialization setting, that should work (have a look at this page too and inspect the source):
tinyMCE.init({
mode : "textareas",
theme : "simple",
editor_selector : "mceSimple"
});
If this does not help please post what you tried to initialize your editor.
精彩评论