<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>tinymce &#8211; Extreme Web Designs</title>
	<atom:link href="https://theextremewebdesigns.com/blog/tag/tinymce/feed/" rel="self" type="application/rss+xml" />
	<link>https://theextremewebdesigns.com/blog</link>
	<description>Web Design and Web Development</description>
	<lastBuildDate>Tue, 27 Mar 2012 06:27:26 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.7.5</generator>
<site xmlns="com-wordpress:feed-additions:1">156673191</site>	<item>
		<title>Apply TinyMCE to specific textarea</title>
		<link>https://theextremewebdesigns.com/blog/apply-tinymce-specific-textarea/</link>
					<comments>https://theextremewebdesigns.com/blog/apply-tinymce-specific-textarea/#respond</comments>
		
		<dc:creator><![CDATA[admin]]></dc:creator>
		<pubDate>Tue, 27 Mar 2012 06:27:26 +0000</pubDate>
				<category><![CDATA[Articles]]></category>
		<category><![CDATA[tinymce]]></category>
		<category><![CDATA[wordpress]]></category>
		<guid isPermaLink="false">https://theextremewebdesigns.com/blog/?p=482</guid>

					<description><![CDATA[In this article, I am going to show you 2 ways to apply TinyMCE to specific textarea on your web page. Apply TinyMCE to textarea (in general): //HTML: &#60;textarea name="article_text" cols="50" rows="15" id="article_text"&#62;&#60;/textarea&#62; &#60;textarea name="article_content" cols="50" rows="15" id="article_content"&#62;&#60;/textarea&#62; &#60;textarea name="article_ref" cols="50" rows="15" id="article_ref"&#62;&#60;/textarea&#62; //JavaScript: &#60;script type="text/javascript"&#62; tinyMCE.init({ mode : "textareas" }); &#60;/script&#62; Apply TinyMCE specific [&#8230;]]]></description>
										<content:encoded><![CDATA[<p>In this article, I am going to show you 2 ways to <strong>apply TinyMCE to specific textarea</strong> on your web page.<span id="more-482"></span></p>
<h2>Apply TinyMCE to textarea (in general):</h2>
<pre class="lang:xhtml decode:true">//HTML:
&lt;textarea name="article_text" cols="50" rows="15" id="article_text"&gt;&lt;/textarea&gt;
&lt;textarea name="article_content" cols="50" rows="15" id="article_content"&gt;&lt;/textarea&gt;
&lt;textarea name="article_ref" cols="50" rows="15" id="article_ref"&gt;&lt;/textarea&gt;

//JavaScript:
&lt;script type="text/javascript"&gt;
tinyMCE.init({
mode : "textareas"
});
&lt;/script&gt;</pre>
<h2>Apply TinyMCE specific textarea using Way 1:</h2>
<p>You can <strong>apply TinyMCE to specific textarea(s)  using their &#8220;ID&#8221;</strong>.</p>
<pre class="lang:xhtml decode:true">//HTML:
&lt;textarea name="article_text" cols="50" rows="15" id="article_text"&gt;&lt;/textarea&gt;
&lt;textarea name="article_content" cols="50" rows="15" id="article_content"&gt;&lt;/textarea&gt;
&lt;textarea name="article_ref" cols="50" rows="15" id="article_ref"&gt;&lt;/textarea&gt;

//JavaScript:
&lt;script type="text/javascript"&gt;
tinyMCE.init({
mode : "exact",
elements : "article_text, article_content" // Simply enter comma seprated IDs of your textarea for which you want to add TinyMCE
});
&lt;/script&gt;</pre>
<h2>Apply TinyMCE specific textarea using Way 2:</h2>
<p>You can <strong>apply TinyMCE to specific textarea(s)  using their &#8220;class&#8221;</strong>.</p>
<pre class="lang:xhtml decode:true">//HTML:
&lt;textarea name="article_text" cols="50" rows="15" id="article_text" class="my_editor"&gt;&lt;/textarea&gt;
&lt;textarea name="article_content" cols="50" rows="15" id="article_content" class="my_editor2"&gt;&lt;/textarea&gt;
&lt;textarea name="article_ref" cols="50" rows="15" id="article_ref" class="not_my_editor"&gt;&lt;/textarea&gt;

//JavaScript:
&lt;script type="text/javascript"&gt;
tinyMCE.init({
mode : "specific_textareas",
editor_selector : "my_editor, my_editor2", // Simply enter comma seprated class of your textarea for which you want to add TinyMCE
});
&lt;/script&gt;</pre>
<h5>That&#8217;s it!</h5>
<p>Do you know of any other ways to <strong>apply TinyMCE to specific textarea</strong> ? If so, please share with us by commenting below.</p>
<pre><strong> </strong></pre>
]]></content:encoded>
					
					<wfw:commentRss>https://theextremewebdesigns.com/blog/apply-tinymce-specific-textarea/feed/</wfw:commentRss>
			<slash:comments>0</slash:comments>
		
		
		<post-id xmlns="com-wordpress:feed-additions:1">482</post-id>	</item>
	</channel>
</rss>
