jwysiwyg

Help with changing how jWYSIWYG editor works

In jWYSIWYG editor, pushing enter inserts <br />s. Instead of this, I would prefer that pushing enter would wrap chunks in <p> tags. WHAT IS OUTPUT line <br /> new line WHAT I WANT <p>line</p> <p>new line</p> Quick examination of the config seems I can't do it without hacking it internally. Do you suggest I hack the plugin, or u...

Is jWYSIWYG editor too buggy for production use?

After reading the comments on this site: http://www.webresourcesdepot.com/jwysiwyg-jquery-inline-content-editor-plugin/ There is a bit of consensus that jWYSIWYG editor is too buggy (especially in the last few recent comments). Has anyone had experience with it in a large production site? I haven't run a huge sample of markup through ...

How do you apply CSS to the editor iframe in jwysiwyg (jQuery wysiwyg)?

Hello, I'm using a slightly customized version of jwysiwyg for a website. I'm trying to change CSS values inside the textarea replacement (the iFrame where the text gets written) - but I just can't seem to figure out how. Do I have to create a new style sheet to apply to the iFrame? Specifically, I want to change the iframe's :active...

What are the wysiwyg editors that have proven to be reliable at large scale?

I recently heard that jWYSIWYG editor isn't a reliable editor for a large scale website. Are there other WYSIWYG editors that have proven to be reliable on a large scale? Thanks, Walker ...

WYSIWYG editor security question (preventing malicious input)

I'm using jWYSIWYG in a form I'm creating that posts to a database and was wondering how you can prevent a malicious user from trying to inject code in the frame? Doesn't the editor need brackets (which I'd normally strip during the post process) in order to display styles? ...

Adding custom tag buttons to jwysiwyg?

How can I add a button to jwysiwyg that will add an HTML tag to the selected text? I tried this, based on the documentation: $('#wysiwyg').wysiwyg({ controls: { tt: { visible: true, tags: ['tt'], css: { class: 'tt', className: 'tt' } } } }) ... And it adds the button, all right, but then the button doesn't seem to actu...

contenteditable pasting image from clipboard

Am using jwysiwyg and customizing it quite a bit. Wondering if anyone has any links or info on how to support pasting images from the clipboard in a contenteditable element. Many RTEs support this so it has to be doable. ...

Custom insert image in JWYSIWYG

Hi, I need to know if it's possible to create a hook on the "Insert image" button to open a custom window (a personal media manager). If it's, how to return a value (image link...) to the wysiwyg ? Maybe there is a documentation but I didn't find it. Thanks! Cyril ...

Using jWYSIWYG with autoGrow (textarea) in jQuery

I'm trying to use jWYSIWYG and autoGrow together so that the textarea in the jWYSIWYG editor expands as you type. Either jWYSIWYG works or autoGrow works, but not both together. I'm pretty new to jQuery, so would appreciate hearing what I'm doing wrong here. <script type="text/javascript"> $(function(){ $('#wysiwyg').autoGrow();...

jwysiwyg Jquery

hello.. im using jwysiwyg and i dont know how to clear the value of the frame to where the user will input the text.. im doing it like this.. $('#wysiwyg').val(""); but it is not working.. ...