HTML Text editor for all browsers

Some time ago i wanted a HTML editor for a small back-end content manager. I wanted one that worked well across all browsers. I did try HTML Area, which worked well but was IE and Moz only. Well i've just come across a flash text/html editor. It has some limitations , like the generated HTML cannot be posted (or so it seems) but you can view the generated code, as well as

  • Save
  • Load
  • Delete
  • setSize Method
  • Color Picker
  • Fixed Font Sorting
  • It also uses span classes instead of font classes (for true HTML output)
  • And you can skin it via Actionscipt
Check it out at http://www.joshdura.com/archives/000163.php

Posted: 03-Nov-2004

View: 4203

Permalink: here

Comments

FCK Editor http://www.fckeditor.net is looking quite promising too. Still IE/Mozilla though i think but is quite nifty as it only uses javascript.

#1 Doug Cain
03/Nov/04 6:13 AM

These editors are great but the problem we constantly run into using them is the clients reliance on Microsoft Word and cutting and pasting Word into the text area. Without going through a lot of steps to paste into Notepad or elsewhere to remove the extra fluff - I haven't found anything that will reliably clean that up before inserting it into the DB.

#2 Jim
03/Nov/04 7:28 AM

Jim, totally agree with you on that. I even had to do some UTF-8 work which was coming in via word and being pasted in. Ouch that was painful.

#3 Andy Jarrett
03/Nov/04 7:46 AM

Jim

The best way we found out to remove the M$ Word fluff was saving the document as HTML from word. Opening on dreamweaver and using the M$ Word Clean Up command. May be there is one way to autoatize this task.

HTH

Emanuel

#4 Emanuel
03/Nov/04 7:53 AM

There is a UDF at cflib.org called deMoronize() that deals with the MS Word "special characters".

Let your users copy/paste from Word, and use deMoronize() when you're outputting the data to handle the MS Word-centric characters.

#5 Charlie Griefer
03/Nov/04 8:19 AM

WysiPad 2 has a paste unformatted method which will paste as text into WysiPad. This has worked well for me.

#6 Doug Hughes
03/Nov/04 9:33 AM

We use Activedit (IE only) and wrote a function, on paste to strip everything in <> and it works pretty good stripping out Word format and turning it into content as if it had been pasted from Notepad. Here is an example if you want to try it - http://www.k1marketing.com/test/example.cfm - it works everytime when clicking the paste button - and most (but not all) the time when using Ctrl+V to paste.

#7 Andrew
03/Nov/04 9:39 AM

The FCK Editor has a switch to automatically remove word junk when pasted if that helps.

#8 Doug Cain
04/Nov/04 3:24 AM

TinyMCE is one of the best WYSIWYG HTML editors out there. It's free, full of features, and highly customizable. It supports cleaning up text that's been copy and pasted from Word.

#9 Richard Davies
26/Apr/07 9:59 PM