Vanilla 1 is no longer supported or maintained. If you need a copy, you can get it here.
HackerOne users: Testing against this community violates our program's Terms of Service and will result in your bounty being denied.
wysiwyg integration advice please
hi, i need to integrate a free wysiwyg into an admin panel of a website, i have never dealt with any wysiwyg soft, so please give a piece of advice on this,, i need it to be very easy to integrate, couse im not a pro in programming (even though i do make cms-based sites)... so please, recommend some free wysiwyg editor, which is easy to install and integrate,, thanks
0
This discussion has been closed.
Comments
For tinymce in simple mode it's
<script language="javascript" type="text/javascript" src="tiny_mce.js"></script> <script language="javascript" type="text/javascript"> tinyMCE.init({ mode : "textareas", theme : "simple" }); </script>
and
<textarea name="whatever" rows="10" cols="40"> Some <b>element</b> <p>Some paragraph. <a href="http://www.sourceforge.net">Some link</a></p> <img src="example_data/logo.jpg"> </textarea>
And that's really it! nothing else to do :-)
Not sure how it's done in fckeditor, but *should* be similar ;-)
<?php include("spaw2/spaw.inc.php"); $spaw = new SpawEditor("spaw1", 'default content'); ... ?> <form action=... <?php $spaw->show(); ?> </form>
Also YUI 2.3.0 come with a wysiwyg editor.