I noticed in the editor when you toggle to the source side and add a 'link' tag; it will automatically read in the styles in that external file and apply them when you return to the wysiwyg side. I was wondering if there was an easy way to invoke that same process but pass it a string of css code. I ask this because I am using the editor on one textarea and then on another I am allowing users to type in css code. I would love to see this css code import into the editor on the fly, but I don't want it as part of the actual source, because they are stored separately when the form submits.
Thanks for the help.
Thanks for the help.
Re: Dynamically loading styles into the editor.
make it include the css. sumhow. every time you change the css and at form submit... a lil bit of js code and its done.

then when you submit both do a replace $htmldata=str_replace($css,'',$htmldata);
should work eh ?
Re: Dynamically loading styles into the editor.
Thanks for the idea.