Questions tagged [tinymce-4]

TinyMCE is an open source WYSIWYG HTML editor that provides a modern rich text editing experience for web applications. Use this tag for questions regarding the usage of TinyMCE and its integration with CMSs and other web-based applications.

TinyMCE is an open source WYSIWYG HTML editor that provides a modern rich text editing experience for web applications. It is useful for developers who want a simple yet powerful way for users to create and edit HTML content online.

TinyMCE is integrated into thousands of open source and commercial applications such as:

  • Content management systems (CMSs)
  • Learning management systems (LMSs)
  • Customer relationship management (CRM) and marketing automation systems
  • Email marketing systems
  • Content creation in SaaS systems

Core features

In addition to basic formatting tools like bold, italic, underline, lists, and alignment, it provides a wide array of tools one would expect to find in the modern content creation apps like the ability to insert images, videos, tables, and spell checking. There’s also a range of additional features especially designed to assist with productivity, compliance and collaboration.

TinyMCE is highly configurable to cater for a range of use cases. It can be set up with lots of options and tools, or just a few, depending on whether you’re using it within, say, a chat client or a CMS. With 50+ powerful plugins available to developers, extending TinyMCE is as simple as including a single line of code. The look and feel can also be configured to match particular UIs and design systems.

It’s easily integrated with the most popular front-end frameworks, including , , , and .

Browser compatibility

TinyMCE is compatible with multiple browsers, including Internet Explorer, Firefox, Safari, Opera and Google Chrome, across multiple operating systems. TinyMCE 5.1 was specifically redesigned to provide an enhanced mobile experience for users.

API

TinyMCE includes an extensive API for developing custom plugins and integrations.

Useful links

1317 questions
-1
votes
1 answer

Unable to check length of TinyMCE's content

I'm working with TinyMCE. The problem is every time I try to post after fulfilling a set of conditions for title and body, I get the error message for minimal body chars. If I delete this condition it is posted successfully. If I remove the TinyMCE…
bɪˈɡɪnə
  • 1,087
  • 2
  • 23
  • 46
-1
votes
1 answer

How to extend tinymce's media plugin?

TinyMCE already has a bunch of nice plugins out of the box. One of them - media plugin - wich i would like to extend. Problem: I use an exterenal Video service with an API. In order to play video on the page, i need to embed it with an iframe. The…
V-Light
  • 3,065
  • 3
  • 25
  • 31
-1
votes
1 answer

wiris plugin is working in tinymce on equation save

I'm using wiris plugin to enter equation. However, when i save the editor and refresh the page the equation is replaced with plain text. Anyone else having this issue? any other equation plugin for tiniMCE?
Louis
  • 1,014
  • 2
  • 11
  • 20
-1
votes
1 answer

Web page not displaying tinyMCE formated text

Formatted text is stored in database properly with all tags and when I inspect element on my webpage for example it says something but it is not displayed as bold/strong. In my head tag I have the source being called and tinyMCE…
admir
  • 193
  • 16
-1
votes
1 answer

In TinyMCE 4.0, how do I get the content of a textarea by id?

In TinyMCE 3.x, I would use this code: //TinyMCE 3.x tinyMCE.get( "textAreaId" ).getContent(); But this is throwing an error in 4.x. How do I do this in 4.x?
Don Rhummy
  • 24,730
  • 42
  • 175
  • 330
-1
votes
1 answer

WIRIS & tinymce 4. Inline method

Anyone has fixed wiris plugin to work with tinymce 4 inline method? Already customized it to work with tinymce 4, but still not working with inline method. Anyone fixed this before?
Denis Omeri
  • 610
  • 1
  • 9
  • 21
-2
votes
1 answer

Prevent < > parsing tinymce to >

I do not have HTML content in it, but regular string which has text like , it is being saved as some data> How do I save it exactly like this . I need to use this data somewhere else where it should match…
Aijaz
  • 680
  • 15
  • 42
-2
votes
1 answer

How to integrate tinyMce editor in java web application

My website largely depends on user input. I am using jsp and html as view technology. I am not able to integrate tinymce 4.3.8 editor with my web pages. On clicking submit it sends null value to servlet. Perhaps I did not configure it properly. All…
Gaurav Mahindra
  • 424
  • 2
  • 6
  • 21
-2
votes
2 answers

How to use email signature in tinymce text editor

I am developing an application on asp.net mvc 5. In my application I have used a tinyMCE text editor.Problem is that I need to embed a logo as email signature. But I don't know how to do that. Can anyone help me in this regards ? Thanks in advance
-2
votes
2 answers

TinyMCE - How to insert content at specific position

This is my try. tinymce.init({ ... }); var frame2 = '

some text

'; tinymce.execCommand('mceInsertContent',false,frame2); out put view on preview
some text
As you can see the output is wrong. The desired output is…
angry kiwi
  • 10,730
  • 26
  • 115
  • 161
-2
votes
5 answers

"There is an error! The root folder not exist" in tinymce filemanager

I have uploaded tinymce 4 at my domain successfully and tinymce editor is working properly but in filemanager it is giving a error: There is an error! The root folder not exist. I set up my file path in the config.php is like…
lakki
  • 21
  • 1
  • 4
-3
votes
1 answer

Allow all types of elements and Attributes in Tinymce

How to allow all custom user defined elements and attribute in tinymce editor. I am using below code buts its inserting my span element but removing temp attribute. Can it possible that tinymce allow all custom attributes and elements in…
1 2 3
87
88