<?xml version="1.0"?><?xml-stylesheet type="text/xsl" href="/rss.xsl"?><rss version="2.0"><channel><title>jHtmlArea - WYSIWYG HTML Editor for jQuery</title><link>http://jhtmlarea.codeplex.com/project/feeds/rss</link><description>A simple, light weight, extensible WYSIWYG HTML Editor built on top of jQuery. This component allows you to easily display a WYSIWYG HTML Editor in place of any TextArea DOM Elements on the page. The minified script alone is 9.17kb&amp;#59; CSS and Images it&amp;#39;s a total of 25.9kb.</description><item><title>New Post: Automatic &lt;p&gt; &amp; &lt;/p&gt;</title><link>http://jhtmlarea.codeplex.com/discussions/438081</link><description>&lt;div style="line-height: normal;"&gt;**rpiggott wrote:**&lt;br /&gt;
&lt;blockquote&gt;
Is there a way that instead of using &amp;lt;br&amp;gt; for a new line &amp;lt;p&amp;gt; &amp;amp; &amp;lt;/p&amp;gt; could be implemented instead?&lt;br /&gt;
&lt;/blockquote&gt;
I have no idea but I'd vote for this if i could&lt;br /&gt;
&lt;/div&gt;</description><author>dunxz</author><pubDate>Thu, 23 May 2013 01:53:35 GMT</pubDate><guid isPermaLink="false">New Post: Automatic &lt;p&gt; &amp; &lt;/p&gt; 20130523015335A</guid></item><item><title>Commented Issue: Unable to get value of the property 'msie': [16161]</title><link>http://jhtmlarea.codeplex.com/workitem/16161</link><description>Doesn&amp;#39;t work with latest version of jQuery, I get this error&amp;#58;&lt;br /&gt;&lt;br /&gt; Unable to get value of the property &amp;#39;msie&amp;#39;&amp;#58;&lt;br /&gt;Comments: ** Comment from web user: wilpig ** &lt;p&gt;Duplicate of bug #15990 &lt;/p&gt;&lt;p&gt;[http://jhtmlarea.codeplex.com/workitem/15990](http://www.example.com)&lt;/p&gt;</description><author>wilpig</author><pubDate>Thu, 09 May 2013 02:07:52 GMT</pubDate><guid isPermaLink="false">Commented Issue: Unable to get value of the property 'msie': [16161] 20130509020752A</guid></item><item><title>New Post: Allow for Mutliple ID's and Classes when using more than one instance.</title><link>http://jhtmlarea.codeplex.com/discussions/442872</link><description>&lt;div style="line-height: normal;"&gt;Maybe this will help someone. I needed two instances, and wanted to give 2 ID's and a class.  This is not hard and maybe it was posted somewhere but I thought I would post it anyways:&lt;br /&gt;
&lt;br /&gt;
Added this:&lt;br /&gt;
&lt;pre&gt;&lt;code&gt;if (opts.idName) iframe.attr(&amp;quot;id&amp;quot;,opts.idName);
if (opts.className) iframe.attr(&amp;quot;class&amp;quot;,opts.className);&lt;/code&gt;&lt;/pre&gt;

after this about line 45:&lt;br /&gt;
&lt;pre&gt;&lt;code&gt;var iframe = this.iframe = $(&amp;quot;&amp;lt;iframe/&amp;gt;&amp;quot;).height(textarea.height());&lt;/code&gt;&lt;/pre&gt;

Then added the options on the page:&lt;br /&gt;
&lt;pre&gt;&lt;code&gt;$(&amp;quot;#answer&amp;quot;).htmlarea({
    // Override/Specify the Toolbar buttons to show
    toolbar: [
        [&amp;quot;html&amp;quot;],
        [&amp;quot;bold&amp;quot;, &amp;quot;italic&amp;quot;, &amp;quot;underline&amp;quot;],
        [&amp;quot;orderedList&amp;quot;, &amp;quot;unorderedList&amp;quot;],
        [&amp;quot;justifyleft&amp;quot;, &amp;quot;justifycenter&amp;quot;, &amp;quot;justifyright&amp;quot;],
        [&amp;quot;forecolor&amp;quot;, &amp;quot;image&amp;quot;]                                      
    ],
    idName:&amp;quot;editor1&amp;quot;,
    className:&amp;quot;c_editor&amp;quot;                  
});
        
$(&amp;quot;#question&amp;quot;).htmlarea({
    // Override/Specify the Toolbar buttons to show
    toolbar: [
        [&amp;quot;html&amp;quot;],
        [&amp;quot;bold&amp;quot;, &amp;quot;italic&amp;quot;, &amp;quot;underline&amp;quot;],
        [&amp;quot;orderedList&amp;quot;, &amp;quot;unorderedList&amp;quot;],
        [&amp;quot;justifyleft&amp;quot;, &amp;quot;justifycenter&amp;quot;, &amp;quot;justifyright&amp;quot;],
        [&amp;quot;forecolor&amp;quot;]                                      
    ],
    idName:&amp;quot;editor2&amp;quot;,
    className:&amp;quot;c_editor&amp;quot;               
});

$(&amp;quot;.c_editor&amp;quot;).contents().find('body').css({&amp;quot;font-family&amp;quot; : &amp;quot;Verdana, Geneva, sans-serif&amp;quot; });   
$(&amp;quot;.c_editor&amp;quot;).css({&amp;quot;border-color&amp;quot;: &amp;quot;#000&amp;quot;, 
                        &amp;quot;border-width&amp;quot;:&amp;quot;1px&amp;quot;, 
                            &amp;quot;border-style&amp;quot;:&amp;quot;solid&amp;quot;});&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;</description><author>dblu</author><pubDate>Tue, 07 May 2013 21:14:22 GMT</pubDate><guid isPermaLink="false">New Post: Allow for Mutliple ID's and Classes when using more than one instance. 20130507091422P</guid></item><item><title>Created Issue: Bug: $element.htmlarea('html', '') doesn't do anything [16190]</title><link>http://jhtmlarea.codeplex.com/workitem/16190</link><description>How to reproduce&amp;#58;&lt;br /&gt;&lt;br /&gt;&amp;#42; &amp;#36;element.htmlarea&amp;#40;&amp;#39;html&amp;#39;, &amp;#39;&amp;#39;&amp;#41;&amp;#59;&lt;br /&gt;&amp;#42; Expected behavior&amp;#58; editor is emptied&lt;br /&gt;&amp;#42; Observed behavior&amp;#58; nothing happened&lt;br /&gt;&lt;br /&gt;The bug is caused by the following code&amp;#58;&lt;br /&gt;&amp;#96;&amp;#96;&amp;#96;&lt;br /&gt;        html&amp;#58; function &amp;#40;v&amp;#41; &amp;#123;&lt;br /&gt;            if &amp;#40;v&amp;#41; &amp;#123;&lt;br /&gt;                this.textarea.val&amp;#40;v&amp;#41;&amp;#59;&lt;br /&gt;                this.updateHtmlArea&amp;#40;&amp;#41;&amp;#59;&lt;br /&gt;            &amp;#125; else &amp;#123;&lt;br /&gt;                return this.toHtmlString&amp;#40;&amp;#41;&amp;#59;&lt;br /&gt;            &amp;#125;&lt;br /&gt;        &amp;#125;,&lt;br /&gt;&amp;#96;&amp;#96;&amp;#96;&lt;br /&gt;&lt;br /&gt;if&amp;#40;v&amp;#41; returns &amp;#39;false&amp;#39; when v is empty.&lt;br /&gt;&lt;br /&gt;Solution&amp;#58; check for &amp;#39;undefined&amp;#39;&lt;br /&gt;&lt;br /&gt;&amp;#96;&amp;#96;&amp;#96;&lt;br /&gt;        html&amp;#58; function &amp;#40;v&amp;#41; &amp;#123;&lt;br /&gt;            if &amp;#40;v &amp;#61;&amp;#61;&amp;#61; undefined&amp;#41; &amp;#123;&lt;br /&gt;                this.textarea.val&amp;#40;v&amp;#41;&amp;#59;&lt;br /&gt;                this.updateHtmlArea&amp;#40;&amp;#41;&amp;#59;&lt;br /&gt;            &amp;#125; else &amp;#123;&lt;br /&gt;                return this.toHtmlString&amp;#40;&amp;#41;&amp;#59;&lt;br /&gt;            &amp;#125;&lt;br /&gt;        &amp;#125;,&lt;br /&gt;&amp;#96;&amp;#96;&amp;#96;&lt;br /&gt;</description><author>koosvdkolk</author><pubDate>Fri, 03 May 2013 18:33:00 GMT</pubDate><guid isPermaLink="false">Created Issue: Bug: $element.htmlarea('html', '') doesn't do anything [16190] 20130503063300P</guid></item><item><title>Commented Issue: Unable to get value of the property 'msie': [16161]</title><link>http://jhtmlarea.codeplex.com/workitem/16161</link><description>Doesn&amp;#39;t work with latest version of jQuery, I get this error&amp;#58;&lt;br /&gt;&lt;br /&gt; Unable to get value of the property &amp;#39;msie&amp;#39;&amp;#58;&lt;br /&gt;Comments: ** Comment from web user: skpatel20 ** &lt;p&gt;+1&lt;/p&gt;</description><author>skpatel20</author><pubDate>Sat, 27 Apr 2013 04:35:17 GMT</pubDate><guid isPermaLink="false">Commented Issue: Unable to get value of the property 'msie': [16161] 20130427043517A</guid></item><item><title>New Post: rending with width and height zero values </title><link>http://jhtmlarea.codeplex.com/discussions/285825</link><description>&lt;div style="line-height: normal;"&gt;I had the same problem. Here's why it's happening. If you have the textarea hidden (because of css/js, like with tabs), then jHtmlArea calculates its' width and height as 0. So the fix is to either make sure that the textarea is not hidden, or add another function that initiates when the hidden text area is shown.&lt;br /&gt;
&lt;br /&gt;
Normal usage, but making sure the textarea is actually visible:&lt;br /&gt;
&lt;pre&gt;&lt;code&gt;$(&amp;quot;textarea:visible&amp;quot;).htmlarea();&lt;/code&gt;&lt;/pre&gt;

For cases where you need it to initiate later on, after showing the div, you can do this:&lt;br /&gt;
&lt;pre&gt;&lt;code&gt;if ($('.myDiv').is(&amp;quot;:visible&amp;quot;)) {
        $(&amp;quot;textarea:visible&amp;quot;).htmlarea();
}&lt;/code&gt;&lt;/pre&gt;

That's the basic idea anyway. I've just implemented a fix like this, and haven't has a problem so far.&lt;br /&gt;
&lt;/div&gt;</description><author>Justin16l</author><pubDate>Wed, 24 Apr 2013 13:20:47 GMT</pubDate><guid isPermaLink="false">New Post: rending with width and height zero values  20130424012047P</guid></item><item><title>New Post: auto focus in iphone 6.0</title><link>http://jhtmlarea.codeplex.com/discussions/441050</link><description>&lt;div style="line-height: normal;"&gt;Hello there,&lt;br /&gt;
&lt;br /&gt;
I have tried to detect auto focus after loading and chage the param (keyboardDisplayRequiresUserAction to NO)  in the webview of my applicaion.&lt;br /&gt;
&lt;br /&gt;
The keyboard jumped looks fine and even the cursor is in the right position, the only problem is that the character that taps is not display in the edited area.&lt;br /&gt;
&lt;br /&gt;
Any suggestion?&lt;br /&gt;
&lt;/div&gt;</description><author>biechereran</author><pubDate>Sun, 21 Apr 2013 11:47:19 GMT</pubDate><guid isPermaLink="false">New Post: auto focus in iphone 6.0 20130421114719A</guid></item><item><title>New Post: Hide horizontal scroll bar</title><link>http://jhtmlarea.codeplex.com/discussions/432154</link><description>&lt;div style="line-height: normal;"&gt;Hi,&lt;br /&gt;
&lt;br /&gt;
Try this&lt;br /&gt;
&lt;pre&gt;&lt;code&gt;    $(&amp;quot;#myTextArea&amp;quot;).htmlarea({
        css: '@Url.Content(&amp;quot;~/Content/jHtmlArea.Editor.css&amp;quot;)'
    });
&lt;/code&gt;&lt;/pre&gt;

jHtmlArea.Editor.css:&lt;br /&gt;
body &lt;br /&gt;
{&lt;br /&gt;
&lt;pre&gt;&lt;code&gt;background-color: transparent;
margin: 0;
padding: 0;&lt;/code&gt;&lt;/pre&gt;

}&lt;br /&gt;
&lt;/div&gt;</description><author>Solg</author><pubDate>Fri, 19 Apr 2013 14:06:43 GMT</pubDate><guid isPermaLink="false">New Post: Hide horizontal scroll bar 20130419020643P</guid></item><item><title>Created Issue: Unable to get value of the property 'msie': [16161]</title><link>http://jhtmlarea.codeplex.com/workitem/16161</link><description>Doesn&amp;#39;t work with latest version of jQuery, I get this error&amp;#58;&lt;br /&gt;&lt;br /&gt; Unable to get value of the property &amp;#39;msie&amp;#39;&amp;#58;&lt;br /&gt;</description><author>RichHamilton</author><pubDate>Mon, 15 Apr 2013 15:33:27 GMT</pubDate><guid isPermaLink="false">Created Issue: Unable to get value of the property 'msie': [16161] 20130415033327P</guid></item><item><title>New Post: Hide horizontal scroll bar</title><link>http://jhtmlarea.codeplex.com/discussions/432154</link><description>&lt;div style="line-height: normal;"&gt;Anyone solved this?&lt;br /&gt;
&lt;/div&gt;</description><author>jamin824</author><pubDate>Fri, 05 Apr 2013 04:09:08 GMT</pubDate><guid isPermaLink="false">New Post: Hide horizontal scroll bar 20130405040908A</guid></item><item><title>New Comment on "Modify Editor Programatically using JavaScript"</title><link>http://jhtmlarea.codeplex.com/wikipage?title=Modify Editor Programatically using JavaScript&amp;ANCHOR#C27006</link><description>I&amp;#39;m trying to add some custom CSS classes to the iframe or editor side of the WysiWyg editor but can not seem to get them to work when adding the classes.  I tried adding them to the iframe but that doesn&amp;#39;t work, can anyone help please.</description><author>Millzy</author><pubDate>Wed, 27 Mar 2013 14:37:32 GMT</pubDate><guid isPermaLink="false">New Comment on "Modify Editor Programatically using JavaScript" 20130327023732P</guid></item><item><title>New Post: Automatic &lt;p&gt; &amp; &lt;/p&gt;</title><link>http://jhtmlarea.codeplex.com/discussions/438081</link><description>&lt;div style="line-height: normal;"&gt;Is there a way that instead of using &amp;lt;br&amp;gt; for a new line &amp;lt;p&amp;gt; &amp;amp; &amp;lt;/p&amp;gt; could be implemented instead?&lt;br /&gt;
&lt;/div&gt;</description><author>rpiggott</author><pubDate>Tue, 26 Mar 2013 22:10:56 GMT</pubDate><guid isPermaLink="false">New Post: Automatic &lt;p&gt; &amp; &lt;/p&gt; 20130326101056P</guid></item><item><title>Created Issue: using jhtmlarea in jtable [16111]</title><link>http://jhtmlarea.codeplex.com/workitem/16111</link><description>using this code inside jtable plugin to create a custom field returns document of null&lt;br /&gt;&lt;br /&gt;&amp;#96;&amp;#96;&amp;#96;&lt;br /&gt;var &amp;#36;dp &amp;#61; &amp;#36;&amp;#40;&amp;#34;&amp;#60;textarea class&amp;#61;&amp;#39;&amp;#34; &amp;#43; field.inputClass &amp;#43; &amp;#34;&amp;#39;&amp;#62;&amp;#34; &amp;#43; &amp;#40;value &amp;#124;&amp;#124; &amp;#39;&amp;#39;&amp;#41; &amp;#43; &amp;#34;&amp;#60;&amp;#47;textarea&amp;#62;&amp;#34;&amp;#41;&lt;br /&gt;&amp;#36;dp.htmlarea&amp;#40;&amp;#41;&amp;#59;&lt;br /&gt;return &amp;#36;dp&amp;#59;&lt;br /&gt;&amp;#96;&amp;#96;&amp;#96;&lt;br /&gt;&lt;br /&gt;TypeError&amp;#58; Cannot read property &amp;#39;document&amp;#39; of null&lt;br /&gt;&lt;br /&gt;what can it be&amp;#63;&lt;br /&gt;</description><author>Mteodoro</author><pubDate>Wed, 20 Mar 2013 00:19:14 GMT</pubDate><guid isPermaLink="false">Created Issue: using jhtmlarea in jtable [16111] 20130320121914A</guid></item><item><title>New Post: problem display 'accent' on editor </title><link>http://jhtmlarea.codeplex.com/discussions/436475</link><description>&lt;div style="line-height: normal;"&gt;Hello all&lt;br /&gt;
&lt;br /&gt;
I have a file with extension txt who contain a simple text with accent such as é ,è,...&lt;br /&gt;
When i insert this file into editor , there are incorrect caracter &lt;br /&gt;
&lt;pre&gt;&lt;code&gt;function()  {   
      $.ajax({
        url : name_file,
    dataType: &amp;quot;text&amp;quot;,
    success : function (data) 
               {      $(&amp;quot;#editor&amp;quot;).htmlarea('html', data ); }
              });       
}&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;</description><author>forst</author><pubDate>Wed, 13 Mar 2013 14:48:26 GMT</pubDate><guid isPermaLink="false">New Post: problem display 'accent' on editor  20130313024826P</guid></item><item><title>Source code checked in, #100726</title><link>http://jhtmlarea.codeplex.com/SourceControl/changeset/changes/100726</link><description>Updated Nuget package to include jQuery dependency</description><author>crpietschmann</author><pubDate>Sun, 10 Mar 2013 17:03:21 GMT</pubDate><guid isPermaLink="false">Source code checked in, #100726 20130310050321P</guid></item><item><title>Updated Wiki: Home</title><link>http://jhtmlarea.codeplex.com/wikipage?version=28</link><description>&lt;div class="wikidoc"&gt;&lt;b&gt;Project Description&lt;/b&gt;&lt;br /&gt;A simple, light weight, extensible WYSIWYG HTML Editor built on top of jQuery. This component allows you to easily display a WYSIWYG HTML Editor in place of any TextArea DOM Elements on the page. The minified script alone is 9.17kb&amp;#59; CSS and Images it&amp;#39;s a total of 25.9kb.&lt;br /&gt;&lt;br /&gt;This project also includes Visual Studio JavaScript Intellisense support.&lt;br /&gt;&lt;br /&gt;Live Demo: &lt;a href="http://pietschsoft.com/demo/jHtmlArea"&gt;http://pietschsoft.com/demo/jHtmlArea&lt;/a&gt;&lt;br /&gt;
&lt;h2&gt;Key Advantages of jHtmlArea&lt;/h2&gt;&lt;ul&gt;&lt;li&gt;Free, open source (&lt;a href="http://jhtmlarea.codeplex.com/license"&gt;Microsoft Public License&lt;/a&gt;)&lt;/li&gt;
&lt;li&gt;Simple and Lightweight - 10kb minified - 23.6kb w/ css and images&lt;/li&gt;
&lt;li&gt;Supports all mainstream browsers - IE7/8/9+, Firefox 3+, Safari 4+, Chrome&lt;/li&gt;
&lt;li&gt;Built on top of jQuery (requires jQuery 1.3.2 or higher)&lt;/li&gt;
&lt;li&gt;Full Documentation&lt;/li&gt;&lt;/ul&gt;

&lt;h2&gt;View &lt;a href="http://jhtmlarea.codeplex.com/documentation"&gt;Documentation&lt;/a&gt; for full usage examples&lt;/h2&gt;
&lt;h2&gt;Nuget Package&lt;/h2&gt;&lt;a href="http://nuget.org/packages/jHtmlArea"&gt;http://nuget.org/packages/jHtmlArea&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;a href="http://nuget.org/packages/jHtmlArea"&gt;&lt;img style="border:none;" src="http://download-codeplex.sec.s-msft.com/Download?ProjectName=jhtmlarea&amp;amp;DownloadId=636144" alt="Install SQLinq via Nuget" title="Install SQLinq via Nuget" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;img src="http://i3.codeplex.com/Download?ProjectName=jhtmlarea&amp;DownloadId=76574" alt="Screenshot.png" title="Screenshot.png" /&gt;&lt;br /&gt;
&lt;h2&gt;Tutorials / Articles&lt;/h2&gt;&lt;ul&gt;&lt;li&gt;&lt;a href="http://pietschsoft.com/post/2009/07/21/jHtmlArea-The-all-NEW-HTML-WYSIWYG-Editor-for-jQuery.aspx"&gt;jHtmlArea - The all NEW HTML WYSIWYG Editor for jQuery&lt;/a&gt;&lt;/li&gt;
&lt;li&gt;&lt;a href="http://pietschsoft.com/post/2009/08/18/jHtmlArea-Adding-Custom-Toolbar-Buttons.aspx"&gt;Adding Custom Toolbar Buttons&lt;/a&gt;&lt;/li&gt;&lt;/ul&gt;

&lt;h2&gt;Basic Usage&lt;/h2&gt;&lt;div style="color:Black;background-color:White;"&gt;&lt;pre&gt;
$(&lt;span style="color:Blue;"&gt;function&lt;/span&gt;(){
    $(&lt;span style="color:#A31515;"&gt;&amp;quot;textarea&amp;quot;&lt;/span&gt;).htmlarea();
});
&lt;/pre&gt;&lt;/div&gt;
&lt;h2&gt;Icons&lt;/h2&gt;This project also includes icons from the Silk Icon Set by Mark James. You can download the Silk Icon Set here: &lt;a href="http://www.famfamfam.com/lab/icons/silk/"&gt;http://www.famfamfam.com/lab/icons/silk/&lt;/a&gt;&lt;br /&gt;
&lt;h2&gt;Contributors&lt;/h2&gt;This project is maintained by &lt;a href="http://pietschsoft.com"&gt;Chris Pietschmann&lt;/a&gt;. He is a Microsoft MVP for Bing Maps, a Co-Founder of &lt;a href="http://carto.com"&gt;Carto LLC&lt;/a&gt;, and the Owner of &lt;a href="http://simplovation.com"&gt;Simplovation LLC&lt;/a&gt; a software development consulting company that specializes in Mapping/GIS related application development.&lt;/div&gt;&lt;div class="ClearBoth"&gt;&lt;/div&gt;</description><author>crpietschmann</author><pubDate>Sun, 10 Mar 2013 16:56:59 GMT</pubDate><guid isPermaLink="false">Updated Wiki: Home 20130310045659P</guid></item><item><title>Source code checked in, #100725</title><link>http://jhtmlarea.codeplex.com/SourceControl/changeset/changes/100725</link><description>Added Nuget Package</description><author>crpietschmann</author><pubDate>Sun, 10 Mar 2013 16:56:17 GMT</pubDate><guid isPermaLink="false">Source code checked in, #100725 20130310045617P</guid></item><item><title>Created Issue: How to disable edit text [16077]</title><link>http://jhtmlarea.codeplex.com/workitem/16077</link><description>Can I disable user editing text after called &amp;#63;&lt;br /&gt;&amp;#36;&amp;#40;&amp;#39;&amp;#35;textarea&amp;#39;&amp;#41;.htmlarea&amp;#40;&amp;#41;&amp;#59;&lt;br /&gt;&lt;br /&gt;Please assist, thanks.&lt;br /&gt;</description><author>tjcombos</author><pubDate>Thu, 28 Feb 2013 17:23:45 GMT</pubDate><guid isPermaLink="false">Created Issue: How to disable edit text [16077] 20130228052345P</guid></item><item><title>New Post: How to focus a editor textarea</title><link>http://jhtmlarea.codeplex.com/discussions/220236</link><description>&lt;div style="line-height: normal;"&gt;I don't want to start a new thread since my question is similar but I'm wondering if the jHtmlArea plugin natively detects if a TEXTAREA it is being applied to has focus and then gives that focus to the associated IFRAME that it creates for that TEXTAREA.&lt;br /&gt;
&lt;/div&gt;</description><author>WebDevCA</author><pubDate>Thu, 21 Feb 2013 03:43:42 GMT</pubDate><guid isPermaLink="false">New Post: How to focus a editor textarea 20130221034342A</guid></item><item><title>New Post: default jhtml font-family</title><link>http://jhtmlarea.codeplex.com/discussions/75694</link><description>&lt;div style="line-height: normal;"&gt;Hi&lt;br /&gt;
Any news on this? I'm also not able to use default css for the jhtmlarea.&lt;br /&gt;
Thanks&lt;br /&gt;
&lt;br /&gt;
Cornelia Sihota&lt;br /&gt;
&lt;/div&gt;</description><author>siho</author><pubDate>Tue, 19 Feb 2013 15:56:07 GMT</pubDate><guid isPermaLink="false">New Post: default jhtml font-family 20130219035607P</guid></item></channel></rss>