Questions tagged [tinymce-4]

Looking for an interactive HTML editor to enhance your web application's text editing experience? TinyMCE, an open source WYSIWYG tool, offers a modern and sleek solution. Ask questions here about using TinyMCE and seamlessly integrating it with CMSs and other web-based platforms.

the angular-ui-tinymce directive allows for seamless image uploads using a file browser

Utilizing jQuery, we have the ability to incorporate local images into the tinymce editor similar to what is demonstrated in this jsfiddle, by following the guidelines provided in the documentation. The Angular module for tinymce can be found at angular-u ...

Reset TinyMCE 4 using AJAX

I have integrated TinyMCE into a Foundation Reveal modal using Ajax. The issue I am facing is that TinyMCE works perfectly the first time the modal loads, but if I close the modal and reopen it, TinyMCE fails to initialize. Interestingly, other scripts li ...

Challenges encountered with using TinyMce in Meteor React, specifically when working on iPad devices

I am currently working on an app with Meteor React that uses TinyMce through react-tinymce. I followed the instructions provided at The issue I am encountering is related to a form component with TinyMCE, which allows users to add comments. While it funct ...

Developing a pop-up feature that triggers upon clicking for a miniature rich text editing

Looking to integrate the Tiny rich text editor into my code. Check out the TextEditor.js component below: import React from 'react'; import { Editor } from '@tinymce/tinymce-react'; class App extends React.Component { handleEditorCha ...

Get only the text content from a hyperlink using Tinymce-4

Within tinymce.activeEditor, I currently have this line of innerHTML code (part of a ul-list): <li><a href="#">Important words</a></li> When I place the caret within the sentence "Important words," and click a button with the foll ...

Is there a way to add a <video> tag in tinymce editor without it being switched to an <img /> tag?

I am attempting to include a <video> tag within the tinymce editor, but it keeps changing it to an <img> tag. Is there a way to prevent this conversion and keep the <video> tag intact? I want to enable videos to play inside tinymce whil ...