Skip to main content
The 2024 Developer Survey results are live! See the results

All Questions

Tagged with
1 vote
0 answers
90 views

How to change the default value of toolbar in WYSIWYG editor in React JS

Have customized only the required toolbar to present in my editor. Need to change the default text of dropdowns present in the WYSIWYG editor Tried to place the default Value and tried to concat the ...
aji bala's user avatar
4 votes
3 answers
4k views

How to build an own WYSIWYG editor (RTE) using Vanilla JS

I don't want to use Jquery. I want to solve this in vanilla JS. Please help me! Description: How to make selected text bold/italic/underline on clicking a button in JavaScript? Here is my HTML. &...
Abubakar Shafique's user avatar
1 vote
1 answer
297 views

Which JavaScript WYSIWYG editor supports merge/custom fields?

I am looking at creating custom document creation for a Rails application. Users will have ability to edit HTML document. I want to include custom/merge fields from the data objects like {{property....
Jae Cho's user avatar
  • 499
5 votes
2 answers
4k views

Temporarily upload on S3 and remove if it's not used?

I'm trying to implement wysiwyg text editor on react using react-draft-wysiwyg. For uploading image using the text editor, i'm trying to post the file on uploadCallback function to S3 and return the ...
Dong Park's user avatar
1 vote
1 answer
44 views

Tiny MCE - Restrict the options under "format"

The "Format" option in the toolbar contains the options like : I want to know how to remove all / any of the options under this "format" dropdownlist. Like I want to remove Bold, Italic , Underline. ...
user2598808's user avatar
1 vote
1 answer
309 views

RTE Editor with autosave functionality in TYPO3 Backend

Do you know if there is an autosave support in TYPO3's backend RTE Editor ? So that as you write or edit content inside the RTE editor, the changes you make are automatically saved every 2 minutes. ...
Christian Michael's user avatar
3 votes
2 answers
2k views

Change textbox text inside a tinymce editor using javascript

I have a textbox inside a tinymce editor. I want to change textbox text by using javascript. Can any one tell me how is this possible? Thank you
user1809274's user avatar
2 votes
1 answer
280 views

Unable to get/set contents of tiny mce editor

I am using Tiny MCE editor version : 3.5.7 I am using multiple instances of text editor on same page with unique IDs and I have wrapped these editors in a div to show and hide these editors. ...
Umer Khalid Butt's user avatar
0 votes
1 answer
438 views

TinyMCE plugin to create how rows of table

Is there a way to create a plugin for tinymce that creates a custom HTML layout based on what the user enters into input boxes to create the HTML? For example at the moment I use the "template" ...
John Magnolia's user avatar
1 vote
2 answers
3k views

TinyMCE Cleans certain divs

I have a page and want to use TinyMCE to edit certain elements on the page. When I am trying to edit the following elements, the actual content loaded inside tinyMCE is as present in column 2 ...
Sparsh Gupta's user avatar
  • 2,223
4 votes
2 answers
6k views

tinymce custom-button replace content

I added a custom 'quote' button. ed.addButton('blockquote', { title : 'blockquote', cmd : 'mceblockquote', image : url + '/img/blockquote.gif', onclick : function() { var ...
saromba's user avatar
  • 486
4 votes
1 answer
979 views

How can I cancel auto closing tags in TinyMce?

TinyMce by default try to close html tags in rawHTML editor mode. For example: <p>sample text<strong>text</p> automaticaly modified to <p>sample text<strong>text<...
Vyalov V.'s user avatar
  • 363
1 vote
1 answer
208 views

TinyMCE - how to remove toolbar2 and toolbar3

I'm trying to implement tinyMCE into my site and I'm using the advanced theme, I've removed some options and set up the top toolbar how I want it to look but when I try to remove toolbar2 and toolbar3 ...
linus72982's user avatar
  • 1,393
6 votes
1 answer
7k views

styleWithCSS for IE

I'm building a custom RTE that converts user input to a homebrewn markup, now idiot that I am I did this using an iframe with designMode = "On" and got it to work in firefox using styleWithCSS = false ...
Kristoffer Sall-Storgaard's user avatar
31 votes
1 answer
11k views

javascript Rich Text Editors [closed]

There are several (very good) rich text web editors written in Javascript (eg FCKeditor, YUI Texteditor and many many others). However I couldn't find any tutorial on how to build such a component. ...
idrosid's user avatar
  • 7,999