views:

158

answers:

0

Hello, I tried to use Tinyeditor (works without js libaries)...

http://www.leigeber.com/2010/02/javascript-wysiwyg-editor/

The problem i have now is... there isn't a docu on their website how to implement it to a CMS.

After pressing the submit, it seems that the iframe does not send the changes to the textarea.

On comments area the tell how to use it:

<_form onsubmit="instance.post()";> ... without the _

How can i do this with jquery? I dont wanna use inline JS.

my submit has the class .button

i tried

$('form').click(function() { instance.post(); });

does not work... i also need to post / update the data on keyup... for later input validation (check if empty)