Tagged Questions

18
votes
2answers
2k views

Any WYSIWYG rich text editor that doesn't use HTML (contenteditable or designMode), a la (the new) Google Docs?

Besides the new Google Docs, all the other WYSIWYG web-based rich text editors (ckeditor, tinymce, old Google Docs) I've seen are based on contenteditable or designMode. I personally hate using these ...
4
votes
3answers
540 views

How to create a rich text editor [closed]

Hey all i want to know what is the concept behind creating the rich text editor. i mean how to create a rich text editor. I want to learn the implementation. PS: please donot suggest using YUI or any ...
4
votes
7answers
658 views

Looking for a Rich Text Editor that is simple

I need a Rich Text Editor, if that is the right word for some javascript routines that take over a textarea and makes it look like a word processor. I have looked at TinyMCE, CKE, and Whizzywig. ...
4
votes
5answers
99 views

determine when contents of html tag changes

Is there a way to determine when the contents of a HTML tag has changed? I would prefer to catch an event rather than polling it. My use case is I have text enclosed in span tags within a rich text ...
3
votes
2answers
3k views

Flex: Does anyone know a good HTML editor?

I am looking for a flex component that could allow me to edit rich text with images. Something like the RichTextEditor from flex except it allows you to add and preview images too, and which can ...
2
votes
1answer
416 views

What is the best way to parse HTML from a Rich Text Editor in Perl?

Is there a Perl module out there that can take bad HTML (such as what is copied from Microsoft Word) and parse it into nicely formatted HTML? I have looked at HTML::Tidy, but it has gotten horrible ...
1
vote
2answers
30 views

Rich text HTML editor for websites I can use for free?

I need something that will let my users be able to insert lists, change font colors, create headers etc easily within a rich text editor. Then that field should save a simple HTML string for that ...
1
vote
0answers
38 views

What options are out there for an Cross DOmain WYSIWYG editor?

I'm writing a 3rd party API for use in client websites and I need a text editor with some basic functionality. It needs to be WYSIWYG as the end user is non technical. I've looked around and the ...
1
vote
0answers
40 views

wysiwyg inline markup editor?

What I mean by this is something a bit like the stackoverflow markup editor (type markup with realtime rendering) but in a single element, as opposed to having a second window. This would let the ...
1
vote
2answers
261 views

how to set value of elrte editor?

I'm working on a update page, and I want to set value of elrte, but how? <textarea id="ehtml"></textarea> .. $(document).ready(function() { $('#ehtml').elrte(opts_edit); ...
1
vote
1answer
130 views

RichText :inserthtml not working properly in Firefox

I am trying to insert some text content at the cursor position in my contentEditable iframe for the following content(<span style='fontweight:bold'>ab</span>) ab... Here i place the cursor ...
1
vote
1answer
291 views

Silverlight rich text editor that knows to export rich text to html?

I'm doing a Silverlight app. One of the functionality the client wishes is to have a rich text editor that provides simple formatting capabilities such as: blod, italic, color (no paragraphs or ...
1
vote
2answers
133 views

rich text editor properties

In the following RTE I have to reduce the width but doing this means removing some of the features like remove bold,underline options,........ Is there any way to reduce the width without removing ...
1
vote
2answers
73 views

Embed sandboxed HTML on a webpage + SEO

I want to embed some HTML on my website... I would like that: SEO: that content can be crawled and indexed Integration: it renders nicely (does not break my DOM trees for instance, or does not ...
1
vote
1answer
76 views

Rich text editors intended for html email?

What rich text editors are there which are intended to output html for email. This would include inline styles, font and align tags etc and other measures to try to ensure compliance with a wide range ...
1
vote
2answers
165 views

YUI SimpleEditor not right layout

I've downloaded the YUI library for the nice SimpleEditor. When installed and created a simple test. It will not display right. this is how it should look like. ...
0
votes
0answers
46 views

Rails app with rich text editor with formula features

I'm writing a web app (Rails 3) that is supposed to be some sort of learning portal where you have lessons, test's, ext… Now for a lesson body I wan't to give admin an option to use some rich text ...
0
votes
2answers
133 views

TYPO3: Allow HTML for Rich Text Editor

The default settings of the RTE only allow some types of html elements. I also want to allow form button input How can I do this? I searched a bit and found this: ## RTE configuration RTE.default ...
0
votes
4answers
107 views

How do I get this HTML to display formatted, without tags?

I created a blog (for coding practice). I use a Rich Text Editor (ckeditor) and save the post to a database. When I pull the post out to display in a Label.Text, it shows all the HTML tags: ...
0
votes
3answers
129 views

What is the javascript text editor used at Quora?

I like this inline text editor used at Quora: http://www.quora.com/Brogramming/How-does-a-programmer-become-a-brogrammer However, I was unable to identify this one. Does anybody recognize this ...
0
votes
2answers
216 views

Open-source rich HTML editor

I'm an iPhone developer who's new to web development. I've known some HTML and CSS for a while but only started learning PHP yesterday, and installed MAMP on my mac. I'm writing a website for someone ...
0
votes
1answer
691 views

Html rich text editor and read-only content?

I'm looking for a way to make specific elements in a Html rich text editor read-only and not possible to modify by the user. Is there any way to achieve this behavior? An example of the rich text ...
0
votes
2answers
2k views

Plain and Rich text editor options in TinyMce editor

I am using tinymce editor to give good look of textarea where user write some comments.I want to give him two options one is plain text and the other is rich text editor option.When user click on ...