Thanks for the tip!
It lead me to this:
$('mytextarea').value=nicEditors.findEditor
('content_editor_instance).getContent();
and now works in ie... wo0t!
On Jan 21, 4:03 am, electronbender <[email protected]> wrote:
> To get the value in ie, define a custom rule for IE, with something
> like
>
> $(mytextarea).value = $
> (content_editor_instance).contentWindow.document.body.innerHTML
>
> On Jan 20, 4:36 pm, ubernix <[email protected]> wrote:
>
> > I jumped the gun... The above solution works for firefox, but not IE.
> > Anyone know of a solution?
>
> > On Jan 19, 4:48 pm, ubernix <[email protected]> wrote:
>
> > > Declaring the editor instance inside mootools domready event solved
> > > the problem....
>
> > > On Jan 19, 10:52 am, ubernix <[email protected]> wrote:
>
> > > > Hello,
> > > > I have a form with a very basic wysiwyg editor (nicEdit), and am send
> > > > the data via ajax.
> > > > The problem I am having is that I need to submit the form twice to get
> > > > the current textarea value.
>
> > > > demo:http://208.78.98.80/moo/
>
> > > > I am pretty sure I need to preform some type of an update function
> > > > when submitting the form, but not sure how to implement it.
>
> > > > Thanks