jhtmlarea

Adding tables in jHtmlArea

Anyone know of a way of making jHtmlArea support table content, and allow the user to add tables/cells/rows to the editor box? It doesn't appear to be a standard feature for the plugin. I would like for my user to be able to create tables in the WYSIWYG editor. Thanks! ...

jQuery jHTMLArea - How to Allow Only Certain HTML Tags?

Is this possible to limit the HTML only to Bold, Italic, Underline and Breaks in jHTMLArea plugin editor? I'm mostly interested in stripping P tags and using two breaks instead. What I have done in the mean time is: $.fn.stripPTags = function(_str) { _str = _str.replace('<p></p>', ''); _str = _str.replace('<p>', ''); _str = ...

jHtmlArea event handling of keypress

I'm currently developping a text-to-symbol conversion tool (non-profit), and I'm having this problem: For the WYSIWYG-editting of the text, I'd like to use a nice small wysiwyg editor (like jHtmlArea). This editor will show floating divs, so I'll have to intercept a lot of keypresses (spaces/arrows/etc) Currently, my html area is loade...

How set a htmlarea to some specific textarea ,instead of all textarea

I have a drupal site. And i have intsalled a htmlarea module and it worksfine. Now all textarea in the form changed into htmlarea. How is possible to change only some particular textarea to htmlarea. ...

jHTMLArea locks up inside jQuery webform wizard

Hello, I previously posted this question http://stackoverflow.com/questions/1704933/jwysiwyg-or-jhtmlarea-within-a-jquery-ui-tab about getting jHtmlArea to work inside jQuery Ui tabs. I am now trying to get this same html editor to work inside the jQuery formtowizard plugin. I am not sure if this is exactly the same problem or not. No...