<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: JavaScript WYSIWYG Editor &#8211; TinyEditor</title>
	<atom:link href="http://www.scriptiny.com/2010/02/javascript-wysiwyg-editor/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.scriptiny.com/2010/02/javascript-wysiwyg-editor/</link>
	<description>This web development blog features fresh articles on JavaScript, AJAX, CSS, XHTML, PHP, Photoshop and more.</description>
	<lastBuildDate>Thu, 09 Feb 2012 06:38:00 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
	<item>
		<title>By: Derek Martin</title>
		<link>http://www.scriptiny.com/2010/02/javascript-wysiwyg-editor/#comment-13242</link>
		<dc:creator>Derek Martin</dc:creator>
		<pubDate>Tue, 31 Jan 2012 21:10:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.scriptiny.com/?p=339#comment-13242</guid>
		<description>I am having the same problem. I cannot see the controls. I have tried using the default controls, and a shorter custom list. When I use the defaults, all I see is font, size, &amp; style. When I use the custom control, I don&#039;t see any at all. I don&#039;t know why.</description>
		<content:encoded><![CDATA[<p>I am having the same problem. I cannot see the controls. I have tried using the default controls, and a shorter custom list. When I use the defaults, all I see is font, size, &amp; style. When I use the custom control, I don&#039;t see any at all. I don&#039;t know why.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Madman</title>
		<link>http://www.scriptiny.com/2010/02/javascript-wysiwyg-editor/#comment-13228</link>
		<dc:creator>Madman</dc:creator>
		<pubDate>Fri, 27 Jan 2012 09:16:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.scriptiny.com/?p=339#comment-13228</guid>
		<description>Hi, nice Editor, thanks for this!
Works in FF 9.0.1 and IE 7
I extended the Script by one function:

    edit.prototype.getEditorContent=function(){
        return this.e.body.innerHTML;
    };

So you can send the Editor-Content with a simple form-submit:
&lt;form method=&quot;post&quot; action=&quot;...&quot; onsubmit=&quot;transferbox();&quot;&gt;
&lt;input type=&quot;text&quot; name=&quot;xyz&quot; [..] /&gt;
&lt;!-- Editor --&gt;
&lt;/form&gt;
&lt;script&gt;
            // Editor create
            var infoeditor = new TINY.editor.edit(&#039;editor&#039;,{ [...]

            function transferbox() {
                // Yes, its jQuery :-) But i&#039;m sure you can use it your own way ;-)
                $(&quot;#kursinfos&quot;).text(infoeditor.getEditorContent());
            }
&lt;/script&gt;

I&#039;m sorry for my english, but i hope its ok ;-)

Greetings from Germany,
Daniel M. (Softnet-Studio GbR)</description>
		<content:encoded><![CDATA[<p>Hi, nice Editor, thanks for this!<br />
Works in FF 9.0.1 and IE 7<br />
I extended the Script by one function:</p>
<p>    edit.prototype.getEditorContent=function(){<br />
        return this.e.body.innerHTML;<br />
    };</p>
<p>So you can send the Editor-Content with a simple form-submit:<br />
&lt;form method=&quot;post&quot; action=&quot;&#8230;&quot; onsubmit=&quot;transferbox();&quot;&gt;<br />
&lt;input type=&quot;text&quot; name=&quot;xyz&quot; [..] /&gt;<br />
&lt;!&#8211; Editor &#8211;&gt;<br />
&lt;/form&gt;<br />
&lt;script&gt;<br />
            // Editor create<br />
            var infoeditor = new TINY.editor.edit(&#039;editor&#039;,{ [...]</p>
<p>            function transferbox() {<br />
                // Yes, its jQuery <img src='http://www.scriptiny.com/wp-includes/images/smilies/icon_smile.gif' alt=':-)' class='wp-smiley' />  But i&#039;m sure you can use it your own way <img src='http://www.scriptiny.com/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /><br />
                $(&quot;#kursinfos&quot;).text(infoeditor.getEditorContent());<br />
            }<br />
&lt;/script&gt;</p>
<p>I&#039;m sorry for my english, but i hope its ok <img src='http://www.scriptiny.com/wp-includes/images/smilies/icon_wink.gif' alt=';-)' class='wp-smiley' /> </p>
<p>Greetings from Germany,<br />
Daniel M. (Softnet-Studio GbR)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Jegs1</title>
		<link>http://www.scriptiny.com/2010/02/javascript-wysiwyg-editor/#comment-13208</link>
		<dc:creator>Jegs1</dc:creator>
		<pubDate>Sat, 21 Jan 2012 01:17:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.scriptiny.com/?p=339#comment-13208</guid>
		<description>TinyEditor is just what I needed for a tutorial on HTML. Works great in Chrome 16 and Firefox 9, but it is glitching in IE9. Enlarging the width of the text area solved some issues (like the cursor not showing up). But the toggle button to show the source is not working in IE9. I really need that functionality for what my lesson is trying to show. Any ideas on fixing this?</description>
		<content:encoded><![CDATA[<p>TinyEditor is just what I needed for a tutorial on HTML. Works great in Chrome 16 and Firefox 9, but it is glitching in IE9. Enlarging the width of the text area solved some issues (like the cursor not showing up). But the toggle button to show the source is not working in IE9. I really need that functionality for what my lesson is trying to show. Any ideas on fixing this?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Kerrod Hall</title>
		<link>http://www.scriptiny.com/2010/02/javascript-wysiwyg-editor/#comment-13205</link>
		<dc:creator>Kerrod Hall</dc:creator>
		<pubDate>Thu, 19 Jan 2012 08:49:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.scriptiny.com/?p=339#comment-13205</guid>
		<description>This may have already been covered, but just in case...
I found that there was a small problem when using the TinyEditor and TinyBox2 &#039;packed.js&#039; files.

THE PROBLEM:

When loaded in that order (TinyEditor then TinyBox2), TinyBox2 will work but TinyEditor wont. When it was the other way around (TinyBox2 then TinyEditor), TinyEditor would work but TinyBox2 wouldn&#039;t.

THE SOLUTION:

In tinyeditor/packed.js, the first two functions (T$(i)... and T$$$()...) are missing an &quot;;&quot; after their closing &quot;}&quot;. Fix that and it will work.

It works fine when calling from the &#039;tinyeditor.js&#039; file however; just the packed.js file needs to be changed.</description>
		<content:encoded><![CDATA[<p>This may have already been covered, but just in case&#8230;<br />
I found that there was a small problem when using the TinyEditor and TinyBox2 &#039;packed.js&#039; files.</p>
<p>THE PROBLEM:</p>
<p>When loaded in that order (TinyEditor then TinyBox2), TinyBox2 will work but TinyEditor wont. When it was the other way around (TinyBox2 then TinyEditor), TinyEditor would work but TinyBox2 wouldn&#039;t.</p>
<p>THE SOLUTION:</p>
<p>In tinyeditor/packed.js, the first two functions (T$(i)&#8230; and T$$$()&#8230;) are missing an &quot;;&quot; after their closing &quot;}&quot;. Fix that and it will work.</p>
<p>It works fine when calling from the &#039;tinyeditor.js&#039; file however; just the packed.js file needs to be changed.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Andrkaa</title>
		<link>http://www.scriptiny.com/2010/02/javascript-wysiwyg-editor/#comment-13188</link>
		<dc:creator>Andrkaa</dc:creator>
		<pubDate>Sat, 14 Jan 2012 08:04:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.scriptiny.com/?p=339#comment-13188</guid>
		<description>How can I clear the form after sending the message?</description>
		<content:encoded><![CDATA[<p>How can I clear the form after sending the message?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Andrkaa</title>
		<link>http://www.scriptiny.com/2010/02/javascript-wysiwyg-editor/#comment-13187</link>
		<dc:creator>Andrkaa</dc:creator>
		<pubDate>Sat, 14 Jan 2012 07:49:00 +0000</pubDate>
		<guid isPermaLink="false">http://www.scriptiny.com/?p=339#comment-13187</guid>
		<description>Sorry for my bad English.
For posting your data you need insert data from Tiny Editor to text area.

Initializations Editor.

var my_inst = new TINY.editor.edit(&#039;editor&#039;,{.............

This code insert data from your editor to textarea
my_inst.post(); (javascript)

in &lt;body&gt;

&lt;a href=&quot;#&quot; onClick = &quot;my_inst.post(); var rrr = document.getElementById(&#039;input&#039;).value; alert(rrr); &quot;&gt;333333&lt;/a&gt;</description>
		<content:encoded><![CDATA[<p>Sorry for my bad English.<br />
For posting your data you need insert data from Tiny Editor to text area.</p>
<p>Initializations Editor.</p>
<p>var my_inst = new TINY.editor.edit(&#039;editor&#039;,{&#8230;&#8230;&#8230;&#8230;.</p>
<p>This code insert data from your editor to textarea<br />
my_inst.post(); (javascript)</p>
<p>in &lt;body&gt;</p>
<p>&lt;a href=&quot;#&quot; onClick = &quot;my_inst.post(); var rrr = document.getElementById(&#039;input&#039;).value; alert(rrr); &quot;&gt;333333&lt;/a&gt;</p>
]]></content:encoded>
	</item>
</channel>
</rss>

