<?xml version="1.0"?><?xml-stylesheet type="text/xsl" href="/rss.xsl"?><rss version="2.0"><channel><title>jhtmlarea Discussions Rss Feed</title><link>http://jhtmlarea.codeplex.com/Thread/List.aspx</link><description>jhtmlarea Discussions Rss Description</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>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>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>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 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>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>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><item><title>New Post: drag and drop picture upload for jHtmlArea</title><link>http://jhtmlarea.codeplex.com/discussions/432494</link><description>&lt;div style="line-height: normal;"&gt;Hello,&lt;br /&gt;
&lt;br /&gt;
I am trying to integrate an ajax &amp;quot;drag and drop&amp;quot; image upload function for jHtmlArea and got as far as having a separate &amp;quot;drop box&amp;quot; above the toolbar.&lt;br /&gt;
&lt;br /&gt;
When an image file is dropped there it is uploaded and the resulting image link is pasted as html into jHtmlArea.&lt;br /&gt;
&lt;br /&gt;
What would be much nicer is if one could drop the image directly into the text area.&lt;br /&gt;
&lt;br /&gt;
Would anyone be able to give a hint as to how to achieve this?&lt;br /&gt;
&lt;br /&gt;
I put up a test demo here :  &lt;a href="http://issole.net/jh/" rel="nofollow"&gt;http://issole.net/jh/&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
The upload box is adapted from code by Eric Potvin: &lt;br /&gt;
&lt;br /&gt;
&lt;a href="http://www.bookofzeus.com/articles/drag-and-drop-upload-files-using-ajax
" rel="nofollow"&gt;http://www.bookofzeus.com/articles/drag-and-drop-upload-files-using-ajax
&lt;/a&gt;&lt;br /&gt;
 &lt;br /&gt;
All the source files are here in a zip archive:  &lt;a href="http://issole.net/jh/jh.zip" rel="nofollow"&gt;http://issole.net/jh/jh.zip&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
Here is the html page source:&lt;br /&gt;
&lt;pre&gt;&lt;code&gt;&amp;lt;!DOCTYPE html&amp;gt;
&amp;lt;html xmlns=&amp;quot;http://www.w3.org/1999/xhtml&amp;quot;&amp;gt;
&amp;lt;head&amp;gt;
    &amp;lt;title&amp;gt;Test Picture Drop and Upload for jHTMLarea&amp;lt;/title&amp;gt;
    &amp;lt;script type=&amp;quot;text/javascript&amp;quot; src=&amp;quot;scripts/jquery-1.7.2.min.js&amp;quot;&amp;gt;&amp;lt;/script&amp;gt;
    &amp;lt;script type=&amp;quot;text/javascript&amp;quot; src=&amp;quot;scripts/jquery-ui-1.7.2.custom.min.js&amp;quot;&amp;gt;&amp;lt;/script&amp;gt;
    &amp;lt;link rel=&amp;quot;Stylesheet&amp;quot; type=&amp;quot;text/css&amp;quot; href=&amp;quot;style/jqueryui/ui-lightness/jquery-ui-1.7.2.custom.css&amp;quot; /&amp;gt;
 &amp;lt;script src=&amp;quot;scripts/bozupload.js&amp;quot;&amp;gt;&amp;lt;/script&amp;gt;
 &amp;lt;link rel=&amp;quot;stylesheet&amp;quot; href=&amp;quot;style/bozupload.css&amp;quot; /&amp;gt;
    &amp;lt;script type=&amp;quot;text/javascript&amp;quot; src=&amp;quot;scripts/jHtmlArea-0.7.5.js&amp;quot;&amp;gt;&amp;lt;/script&amp;gt;
    &amp;lt;link rel=&amp;quot;Stylesheet&amp;quot; type=&amp;quot;text/css&amp;quot; href=&amp;quot;style/jHtmlArea.css&amp;quot; /&amp;gt;
&amp;lt;/head&amp;gt;
&amp;lt;body&amp;gt;
    &amp;lt;script type=&amp;quot;text/javascript&amp;quot;&amp;gt;
        $(function() {
            $(&amp;quot;#jhtmlarea&amp;quot;).htmlarea({
                toolbar: [
                    [&amp;quot;html&amp;quot;,&amp;quot;bold&amp;quot;, &amp;quot;italic&amp;quot;, &amp;quot;underline&amp;quot;],
                    [&amp;quot;p&amp;quot;, &amp;quot;h1&amp;quot;, &amp;quot;h2&amp;quot;, &amp;quot;h3&amp;quot;, &amp;quot;h4&amp;quot;, &amp;quot;h5&amp;quot;, &amp;quot;h6&amp;quot;],
                    [&amp;quot;link&amp;quot;, &amp;quot;unlink&amp;quot;],                    
                 ],
        });
   });     
    &amp;lt;/script&amp;gt;
&amp;lt;div align=right  style=&amp;quot;width:360px;&amp;quot;&amp;gt;&amp;lt;section id=&amp;quot;uploadBox&amp;quot;&amp;gt;drop image&amp;lt;br /&amp;gt;here&amp;lt;/section&amp;gt;&amp;lt;/div&amp;gt;
    
&amp;lt;textarea id=&amp;quot;jhtmlarea&amp;quot; cols=&amp;quot;120&amp;quot; rows=&amp;quot;60&amp;quot;&amp;gt;&amp;lt;p&amp;gt;&amp;lt;h3&amp;gt;Test H3&amp;lt;/h3&amp;gt;This is some sample text to test out the &amp;lt;b&amp;gt;WYSIWYG Control&amp;lt;/b&amp;gt;.&amp;lt;/p&amp;gt;&amp;lt;/textarea&amp;gt;
        
&amp;lt;div id=&amp;quot;modal&amp;quot;&amp;gt;
     &amp;lt;div id=&amp;quot;modalMask&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;
     &amp;lt;div id=&amp;quot;modalContent&amp;quot;&amp;gt;
       &amp;lt;section id=&amp;quot;uploadStatus&amp;quot;&amp;gt;
         &amp;lt;div id=&amp;quot;progressWrapper&amp;quot;&amp;gt;
             &amp;lt;div id=&amp;quot;progressBar&amp;quot;&amp;gt;&amp;lt;/div&amp;gt;
             &amp;lt;div id=&amp;quot;progressValue&amp;quot;&amp;gt;0%&amp;lt;/div&amp;gt;
             &amp;lt;p&amp;gt;Processing, please wait ... &amp;lt;input type=&amp;quot;button&amp;quot; id=&amp;quot;closeModal&amp;quot; value=&amp;quot;Close&amp;quot;&amp;gt;
         &amp;lt;/div&amp;gt;
        &amp;lt;/section&amp;gt;
     &amp;lt;/div&amp;gt;
&amp;lt;/div&amp;gt;
 &amp;lt;/body&amp;gt;
&amp;lt;/html&amp;gt;&lt;/code&gt;&lt;/pre&gt;

here is the code of the uploader.php that receives the image file on the server and returns its url:&lt;br /&gt;
&lt;pre&gt;&lt;code&gt;&amp;lt;?php
// Script from http://coursesweb.net/ajax

$savefolder = 'context_img';        // folder for upload
$max_size = 350;            // maxim size for image file, in KiloBytes

// Allowed image types
$allowtype = array('bmp', 'gif', 'jpg', 'jpeg', 'gif', 'png');

/** Uploading the image **/
function array_implode( $glue, $separator, $array ) {
    if ( ! is_array( $array ) ) return $array;
    $string = array();
    foreach ( $array as $key =&amp;gt; $val ) {
        if ( is_array( $val ) )
            $val = implode( ',', $val );
        $string[] = &amp;quot;{$key}{$glue}{$val}&amp;quot;;
    }
    return implode( $separator, $string );
    }
    
    
$rezultat = array_implode(&amp;quot;:&amp;quot;,&amp;quot;-&amp;quot;,$_FILES);

// if is received a valid file
if (isset ($_FILES['uploadedFile'])) {
  // checks to have the allowed extension
  $type = end(explode(&amp;quot;.&amp;quot;, strtolower($_FILES['uploadedFile']['name'])));
  if (in_array($type, $allowtype)) {
    // check its size
    if ($_FILES['uploadedFile']['size']&amp;lt;=$max_size*1000) {
      // if no errors
      if ($_FILES['uploadedFile']['error'] == 0) {
        $thefile = $savefolder . &amp;quot;/&amp;quot; . $_FILES['uploadedFile']['name'];
        // if the file can`t be uploaded, return a message
        if (file_exists($thefile))
                  {//duplicate file, just return the link to the existing file
          list($iwidth, $iheight, $itype, $iattr) = getimagesize($thefile);
          $rezultat = '&amp;lt;br/&amp;gt;&amp;lt;img src=&amp;quot;http://www.lissfineart.com/' . $thefile . '&amp;quot; width=' . $iwidth . ' height=' .  $iheight . ' border=&amp;quot;0&amp;quot; hspace=&amp;quot;0&amp;quot; vspace=&amp;quot;5&amp;quot; /&amp;gt;&amp;lt;br/&amp;gt;' ;
                  }
        elseif (!move_uploaded_file ($_FILES['uploadedFile']['tmp_name'], $thefile)) {
          $rezultat = 'The file can`t be uploaded, try again';
        }
        else {
          // Return the img tag with uploaded image.
          list($iwidth, $iheight, $itype, $iattr) = getimagesize($thefile);
          $rezultat = '&amp;lt;br/&amp;gt;&amp;lt;img src=&amp;quot;http://www.lissfineart.com/' . $thefile . '&amp;quot; width=' . $iwidth . ' height=' .  $iheight . ' border=&amp;quot;0&amp;quot; hspace=&amp;quot;0&amp;quot; vspace=&amp;quot;5&amp;quot; /&amp;gt;&amp;lt;br/&amp;gt;' ;
        //  echo 'The image was successfully loaded';
        }
      }
    }
    else { $rezultat = 'The file &amp;lt;b&amp;gt;'. $_FILES['uploadedFile']['name']. '&amp;lt;/b&amp;gt; exceeds the maximum permitted size &amp;lt;i&amp;gt;'. $max_size. 'KB&amp;lt;/i&amp;gt;'; }
  }
  else { $rezultat = '&amp;lt;b&amp;gt;'. $_FILES['uploadedFile']['name']. '&amp;lt;/b&amp;gt; is of the wrong file type (use jpg)'; }
}

// encode with 'urlencode()' the $rezultat and return it in 'onload', inside a BODY tag
echo urlencode($rezultat);
?&amp;gt;
&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;</description><author>joncas</author><pubDate>Fri, 08 Feb 2013 14:46:53 GMT</pubDate><guid isPermaLink="false">New Post: drag and drop picture upload for jHtmlArea 20130208024653P</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;&lt;p&gt;Hi all!&lt;/p&gt;
&lt;p&gt;Is it possible to hide the horizontal scroll bar that appears in the editor area?&lt;/p&gt;
&lt;/div&gt;</description><author>marcom</author><pubDate>Wed, 06 Feb 2013 09:59:46 GMT</pubDate><guid isPermaLink="false">New Post: Hide horizontal scroll bar 20130206095946A</guid></item><item><title>New Post: Selection of Font-family</title><link>http://jhtmlarea.codeplex.com/discussions/75577</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;hi, i have 2 questions&lt;/p&gt;
&lt;ol&gt;
&lt;li&gt;do we use Menu for display font names, instead of single list of font names.&lt;/li&gt;
&lt;li&gt;did any one uses this.fontfamily(&amp;quot;arial&amp;quot;) method to change the font, i am&lt;br /&gt;
trying to use it in customise toolbar button&lt;/li&gt;
&lt;/ol&gt;
&lt;p&gt;thanks&lt;/p&gt;
&lt;/div&gt;</description><author>shahidiqbal_se</author><pubDate>Mon, 04 Feb 2013 13:24:11 GMT</pubDate><guid isPermaLink="false">New Post: Selection of Font-family 20130204012411P</guid></item><item><title>New Post: HTML Area gets disabled and empty when dropped (jQuery Sortable)</title><link>http://jhtmlarea.codeplex.com/discussions/431588</link><description>&lt;div style="line-height: normal;"&gt;&lt;p&gt;I'm using jQuery Sortable with jHTMLArea. I basically have DIVs that are sortable and the DIVs are sortable. However, when you drop the DIV on any location, the contents of the jHTMLArea become empty and jHTMLArea becomes disabled. The iFrame and textarea both get disabled. You cannot write anything inside of it.&lt;/p&gt;
&lt;p&gt;I'm not sure what the issue, so I'm wondering if this is has to do with the libaries themselves.&lt;/p&gt;
&lt;p&gt;The code I'm using is this:&lt;/p&gt;
&lt;pre&gt;&lt;code&gt;// Enable Sortables
$(&amp;quot;div.nnUtil&amp;quot;).sortable({
    cancel: &amp;quot;.nnSettings&amp;quot;,
    connectWith: 'div.nnUtil',
    distance: 5,
    forcePlaceholderSize: true,
    items: '&amp;gt; div.nnItems',
    placeholder: 'ui-state-highlight',
    revert: 250
});&lt;/code&gt;&lt;/pre&gt;

&lt;/div&gt;</description><author>pathachiever11</author><pubDate>Thu, 31 Jan 2013 19:43:12 GMT</pubDate><guid isPermaLink="false">New Post: HTML Area gets disabled and empty when dropped (jQuery Sortable) 20130131074312P</guid></item><item><title>New Post: Tool Bar wrapping strangely</title><link>http://jhtmlarea.codeplex.com/discussions/257109</link><description>&lt;div style="line-height: normal;"&gt;
&lt;p&gt;Found myself faced with this problem, definitely not a css guru but I fixed it with the following to jHtmlArea.css which basically drops the margin.&lt;/p&gt;
&lt;pre style="font-family:Consolas; background:white; color:black; font-size:13px"&gt;&lt;span style="color:maroon"&gt;div.jHtmlArea&lt;/span&gt;&amp;nbsp;&lt;span style="color:maroon"&gt;.ToolBar&lt;/span&gt;&amp;nbsp;&lt;span style="color:maroon"&gt;ul&lt;/span&gt;&amp;nbsp;&lt;span style="color:maroon"&gt;li&lt;/span&gt;&amp;nbsp;{&lt;span style="color:red"&gt;list-style-type&lt;/span&gt;:&amp;nbsp;&lt;span style="color:blue"&gt;none&lt;/span&gt;;&amp;nbsp;&lt;span style="color:red"&gt;float&lt;/span&gt;:&amp;nbsp;&lt;span style="color:blue"&gt;left&lt;/span&gt;;&amp;nbsp;&lt;span style="color:red"&gt;border&lt;/span&gt;:&amp;nbsp;&lt;span style="color:blue"&gt;none&lt;/span&gt;;&amp;nbsp;&amp;nbsp;&lt;span style="color:red"&gt;padding&lt;/span&gt;:&amp;nbsp;&lt;span style="color:blue"&gt;1px&lt;/span&gt;;&amp;nbsp;}&lt;/pre&gt;
&lt;pre style="font-family:Consolas; background:white; color:black; font-size:13px"&gt;Defo seems like a limitation of IE7.
&lt;/pre&gt;
&lt;/div&gt;</description><author>pghodgson</author><pubDate>Tue, 29 Jan 2013 14:51:38 GMT</pubDate><guid isPermaLink="false">New Post: Tool Bar wrapping strangely 20130129025138P</guid></item><item><title>New Post: insert html at select position</title><link>http://jhtmlarea.codeplex.com/discussions/430856</link><description>&lt;div style="line-height: normal;"&gt;
&lt;p&gt;Hello, is it possible to insert HTML at select&amp;nbsp;position or wrapped around selected text?&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;So if I wanted to insert table or &lt;/p&gt;
&lt;div&gt;selected text&lt;/div&gt;
&lt;p&gt;&lt;/p&gt;
&lt;/div&gt;</description><author>chrismogz</author><pubDate>Fri, 25 Jan 2013 14:09:05 GMT</pubDate><guid isPermaLink="false">New Post: insert html at select position 20130125020905P</guid></item><item><title>New Post: Resize Textarea Window</title><link>http://jhtmlarea.codeplex.com/discussions/397225</link><description>&lt;div style="line-height: normal;"&gt;
&lt;p&gt;I too would like to know how to do this&lt;/p&gt;
&lt;/div&gt;</description><author>angelxmoreno</author><pubDate>Sat, 22 Dec 2012 18:13:27 GMT</pubDate><guid isPermaLink="false">New Post: Resize Textarea Window 20121222061327P</guid></item><item><title>New Post: Selection of Font-family</title><link>http://jhtmlarea.codeplex.com/discussions/75577</link><description>&lt;div style="line-height: normal;"&gt;
&lt;p&gt;Hi DrNotSure&lt;/p&gt;
&lt;p&gt;Thanks for posting the font patch change. I didn't notice that. I'll check/update the patch and post it when I get a moment.&lt;/p&gt;
&lt;p&gt;Regards,&lt;/p&gt;
&lt;p&gt;Simon&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;/div&gt;</description><author>westerdale</author><pubDate>Sat, 15 Dec 2012 22:02:39 GMT</pubDate><guid isPermaLink="false">New Post: Selection of Font-family 20121215100239P</guid></item><item><title>New Post: Selection of Font-family</title><link>http://jhtmlarea.codeplex.com/discussions/75577</link><description>&lt;div style="line-height: normal;"&gt;
&lt;p&gt;first off thanks for jhtmlarea!&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;
&lt;p&gt;I used the patch and found a little issue. Was able to fix it for myself. I figured since I was using jhtmlarea for free I should post it here. I don't claim to know what I am doing, just a hack.&lt;/p&gt;
&lt;p&gt;When i used the patch the and clicked on font family button it worked but the font names went to the right and out of the drop down. Guessing that my own css was interfering with the patch's I opened jHtmlArea.FontPickerMenu.css and found this line&lt;/p&gt;
&lt;p&gt;div.jHtmlAreaFontPickerMenu div {float: left; margin: 2px; width: 112px; height: 14px;}&lt;/p&gt;
&lt;p&gt;Changed it to this&lt;/p&gt;
&lt;p&gt;div.jHtmlAreaFontPickerMenu div {float: left; margin: 2px; width: 112px; height: 14px; text-align: left;}&lt;/p&gt;
&lt;p&gt;iow, added text-align: left;&lt;/p&gt;
&lt;p&gt;No biggie but figured someone who knows even less than me might try the patch and get a headache trying to change it.&lt;/p&gt;
&lt;p&gt;thanks again!&lt;/p&gt;
&lt;/div&gt;</description><author>DrNotSure</author><pubDate>Sat, 15 Dec 2012 07:26:36 GMT</pubDate><guid isPermaLink="false">New Post: Selection of Font-family 20121215072636A</guid></item><item><title>New Post: updateHtmlArea does not seem to be working for me... hel;!</title><link>http://jhtmlarea.codeplex.com/discussions/404375</link><description>&lt;div style="line-height: normal;"&gt;
&lt;p&gt;&lt;span&gt;I get this error&lt;/span&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;TypeError: $(&amp;quot;textarea.item-content&amp;quot;).updateHtmlArea is not a function&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;[Break On This Error]&amp;nbsp;&lt;/strong&gt;&lt;/p&gt;
&lt;p&gt;when I add the following line.&lt;/p&gt;
&lt;p&gt;&lt;strong&gt;$('textarea.item-content').updateHtmlArea(content);&lt;/strong&gt;&lt;br&gt;
&lt;br&gt;
&lt;span&gt;what am I missing... I am trying to load content into the htmlArea to let the user edit it. I see it in the textarea (hidden) but not in the rich text area... thanks in advance for any guidance!!!&lt;/span&gt;&lt;/p&gt;
&lt;/div&gt;</description><author>dpluken</author><pubDate>Fri, 23 Nov 2012 16:16:53 GMT</pubDate><guid isPermaLink="false">New Post: updateHtmlArea does not seem to be working for me... hel;! 20121123041653P</guid></item></channel></rss>