Tagged Questions

jWysiwyg is minimalistic WYSIWYG (What You See Is What You Get) editor built as jQuery plugin.

learn more… | top users | synonyms

3
votes
3answers
237 views

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 ...
3
votes
4answers
2k views

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 ...
1
vote
1answer
55 views

Set default font-family in jWYSIWYG

I set the font-family in the jquery.jwysiwyg.js (line-# 497 where < body > is defined) and added a CSS … $('#wysiwyg').wysiwyg({css : { fontFamily: 'Arial, Tahoma', fontSize : '12px', color : ...
1
vote
1answer
156 views

jwysiwyg remove formatting for copy and pasting

I've got an instance of jWysiwyg running on a site I'm building for a local sports club. The issue I've got is that whenever you copy and paste something into the editor, it copies over the formatting ...
1
vote
1answer
56 views

Inject something in jWYSIWYG at cursor pointer?

I want to inject the dropdown selected value in jWYSIWYG at cursor pointer.I want to do is like that: <select id="shirt" name="shirt"> <option value="small">Small</option> ...
1
vote
1answer
220 views

Dealing with line breaks in jWYSIWYG, either with jQuery or PHP

I'm using the jWYSIWYG editor for jQuery. It does some funky stuff with the HTML on newlines, inserting a <br> and then a <div> after a user hits Return twice. Thus content that a user ...
1
vote
1answer
151 views

jwysiwyg Jquery

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..
1
vote
2answers
411 views

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: ...
1
vote
2answers
143 views

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
0
votes
1answer
32 views

How to detect a change with jQuery to the contents of a textarea that's using jWYSIWYG plugin?

I'm using the jwysiwyg plugin on textareas in my form (jwysiwyg: https://github.com/akzhan/jwysiwyg ) I want to detect changes to any of the textareas that are in my form. Normally, with a standard ...
0
votes
0answers
40 views

jWYSIWYG in jQuery UI dialog

It seems there's an issue with the editor when you try to use it inside a dialog. I've tested my application and in the normal page (main html) everything works well. When I put my AJAX result in the ...
0
votes
1answer
25 views

jWysiwyg jQuery large space after Controls and above textarea

I get a large space (about 300px) after the controls and before the textarea? in Chrome, Firefox, and IE9. I have tried with the default jWysiwyg but get the same thing. function($) { ...
0
votes
2answers
57 views

str_replace not working in html codes

i'm working with a form one of its fields is an RTF textarea (jWYSIWYG), that is autofilled with some database information at the load of the page, all that using Symfony framework. This RTF editor ...
0
votes
0answers
43 views

How to have one WYSIWYG editor for different textareas

A section of my html page looks like the following: <div> <textarea id="apple"></textarea> <textarea id="banana"></textarea> <textarea ...
0
votes
1answer
47 views

How to submit jquery jwysiwyg on enter

I am using jquery rich text editor jwysiwyg , i am able to submit the content on pressing enter key, by adding line if(event.keyCode == 13) { jQuery('#submit_button_id').focus().click(); } ...
0
votes
0answers
24 views

Add a select to Jwysiwyg controls

I'd like to add a select to choose the police in Jwysiwyg. I just want to know if somebody already do that and can point me in the good direction to do it. Thanks in advance.
0
votes
1answer
82 views

Very very simple Rich Text / WYSIWYG Editor

Im looking for a very very simple editor for my forum. Im only interested in basic functions such as bold, italic, underline, blockquote - nothing more, nothing less. Another important feature is ...
0
votes
1answer
144 views

show blink text cursor on html document

I am writing my own WYSIWYG html editor based on jquery. In order to achieve this goal, I am exploring jWYSIWYG. I've figured out that I need usual html container(e.g div) in order to show formatted ...
0
votes
1answer
71 views

Using jWYSIWYG to output BBCode

I really like jWYSIWYG - it's simple, and it works with jQuery. I also understand it's pretty customizable and a good ground base for custom needs -- but the documentation is lacking. I wanna know how ...
0
votes
1answer
60 views

Can I get the original textarea id from within jwysiwyg?

I have some textareas: <textarea id="temp1">Hello</textarea> <textarea id="temp2">Hello</textarea> ... and I initialize jwysiwyg on them: $('#temp1').wysiwyg(); ...
0
votes
2answers
165 views

HTML Characters within the jWysiwyg Editor

I am lost on what this issue may be. I am using jQuery long with the plug-in called jWysiwyg. Whenever I enter an HTML Entity Name or Number &copy; or &#169; within the editor it reverts to ...
0
votes
3answers
138 views

jQuery JavaScript WYSIWYG with image dragging

I'm looking for a simple WYSIWYG editor in jQuery or JavaScript to embed into my site. It needs basic features like: bold, italic, underline, strike, list, header, undo/redo, quote, link, and image. ...
0
votes
0answers
114 views

jQuery - jwysiwyg + validation issue --> the error message does not go away on textarea

I'm using jQuery validation and jwysiwyg in my project. I just want to make sure the user doesn't leave the textarea blank. All works great, and validate catches when the user is leaving the ...
0
votes
1answer
118 views

jwysiwyg jquery plugin

does someone knows how to make jwysiwyg editor in fullscreen mode? thanks
0
votes
2answers
362 views

Simple Jquery WYSIWYG editor question

I have this Editor with me called jWYSIWYG, its basically a Jquery Plugin. So when I select some text and Click on H1/H2/p or whatever from the panel, my text is wrapped up in those corresponding tags ...
0
votes
1answer
147 views

Adding a “quote” button to jwysiwyg

I'm trying to add a "quote" button to jwysiwyg, but I'm having a problem... My code for the button is like: quote: { visible: true, tags: ['blockquote'], command: "FormatBlock", "arguments": ...
0
votes
1answer
101 views

jwysiwyg setting the iframe's id

I'm fairly certain this is very easy but for the life of me I can't find a way to set the id of the iframe that gets created by the jquery plugin jwysiwyg. I looked thru all the documentation and ...
0
votes
1answer
149 views

jquery jwysiwyg extending default controls

I am trying to override a default control in jwysiwyg. Whenever I do this and click on the control I am overriding, I get this error: $.data(this, "wysiwyg") is undefined. Here is the code I am ...
0
votes
2answers
238 views

ReadOnly content in jwysiwyg editor

I was wondering if there is a way to protect a piece of html or text inside the jquery inline content editor jwysiwyg? For example, I have a div that I externally insert to the editor and I do not ...
0
votes
2answers
745 views

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 ...
0
votes
1answer
345 views

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

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 ...
0
votes
1answer
327 views

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 ...