hey guys I have tinymce editor
tinymce.init ({ selector: "textarea", });
I want to have some textareas without tinymce editor tools and some with that selector , how can I make that exceptions?
hey guys I have tinymce editor
tinymce.init ({ selector: "textarea", });
I want to have some textareas without tinymce editor tools and some with that selector , how can I make that exceptions?
You Can simply add and ID with your textarea on which you want tinymce then update your selector for init function. i.e
tinymce.init({
selector: 'textarea#editable'
});
Check more options here:
https://www.tinymce.com/docs/configure/integration-and-setup/#replaceatextareaelementwithideditable