I assumed this is a javascript based text editor because when I turn off javascript it doesn't work. I was wondering how something like this is created. maybe not this exact one, but how would I create something like it. Maybe just a simple editor that changes text size and color.
Announcement
Collapse
No announcement yet.
How would I create something like this text editor?
Collapse
X
-
Tons of editors available from simple to complex.
Google 'javascript text editor' for some like this:
Web Design Resources for designers. We include tutorials, plugins, and web development tools. Download free icons, and fonts for web and graphic designers.
-
-
In my opinion, CKEditor and CKFinder are the best WYSIWYG editor and file upload management tools out there. You can't do too much better.
Maybe just a simple editor that changes text size and color.
I.e.,
Code:<static> {Array|String} CKEDITOR.config.toolbar Since: 3.0 The toolbox (alias toolbar) definition. It is a toolbar name or an array of toolbars (strips), each one being also an array, containing a list of UI items. Defined in: plugins/toolbar/plugin.js. // Defines a toolbar with only one strip containing the "Source" button, a // separator and the "Bold" and "Italic" buttons. config.toolbar = [ [ 'Source', '-', 'Bold', 'Italic' ] ];
Last edited by chump2877; Sep 10, 2011, 01:39 AM.Regards, R.J.
---------------------------------------------------------
Help spread the word! Like our YouTube-to-Mp3 Conversion Script on Facebook !! :-)
[Instructional videos and tutorials are also available on YouTube, Dailymotion, and Vimeo]
Explore all products and services, view demos, review documentation, check prices, and more!
♪♪ …Need Web Hosting For Our YouTube-To-Mp3 Conversion Software? Check Here !!… ♪♪
Comment
-
Comment