JQuery :: Powerful WYSIWYG Editor With Upload Image Capability?
Sep 18, 2009
recommend a powerful WYSIWYG (commercial/open source) editor which has a image upload capability.I have been looking for it since morning but could not able to find it.I found CKeditor+CKFinder , but CKFinder is not available in django/python language. I tried to port to django but encountered several problems.
View 8 Replies
ADVERTISEMENT
Jun 26, 2010
can anyone tell me jwysiwyg or another editor that support upload image? in example like editor in this forum...
View 4 Replies
View Related
Aug 12, 2011
I'm thinking about something like this one: [URL] I tried to google, but unluckily I didn't find anything concerning this topic, then I tried to understand the code of the example linked above and realized that somehow an iframe is loaded. I couldn't manage to find out whether it's just in case of compatibility issues or the final solution. If latter comes true: why are you using a <div> element in the markup then and what's this all about this <textarea> solution (I've heard of this some time ago when looking for jQuery WYSIWYG editors) basically i'd like to understand how it is working, as I'm following the "learning-by-programming"-principle
View 3 Replies
View Related
Dec 1, 2009
For my projet I need to creat an editor WYSIWYG (as CKeditor or WYMeditor [jQuery]) and after must research i see editor need iFrame for functioning.I don't understand when i can access to ifram..This is the creat code :
var myIframe = $('<iframe id="frame_'+myId+'" name="frameName_'+myId+'" frameborder="no" width="500" height="100">');
var myEditorBody = $('<div class="K_editor_body"></div>');
[code]....
View 1 Replies
View Related
Nov 15, 2010
recommend a good WYSIWYG HTML editor for jQuery?
View 5 Replies
View Related
Dec 15, 2010
I have already written the BBCode controller in PHP, and so I just have to make the buttons that will add the bbcode when you click on them.The add image button I'm not sure about yet. I guess I could run a sql query on login of the contents of the database table, and store an array of image urls and thumbnails into a session, then have a 'pop-up' display the list of images you can choose from.Anyway, first thing's first. I need to be able to add the bbcode around text highlighted by the user, exactly like I am able to do with this handy SitePoint WYSIWYG editor I am using right now. So I need to grab the highlighted text with jQuery and then I can append the '[,b]' and '[/b]' round it.
View 3 Replies
View Related
May 25, 2011
I am using CuteEditor for my WYSIWYG text editor. I like to hide all the icons until the user click on the textbox editor. Is there a way to do this in jQuery?
View 18 Replies
View Related
Oct 27, 2005
I am looking for a Javascript WYSIWYG editor that I can include into a perl script to allow for editing a formfield, similar to what this forum offers when you make a post. Is there a script that I can use to code into the perl script to allow that to happen?
View 4 Replies
View Related
Jul 13, 2007
Been searching online for a while and I can't seem to find any decent solutions that work in both Firefox and IE --> basically I want to write a very simple WYSIWYG text editor where a user can highlight a word, click a "B" button and it adds bold tags around it.
Anybody have any idea how to accomplish this seemingly easy task? I've looked at the source code for various open source apps (like Wordpress and phpBB) but the code in both of these is gargantuan and fairly difficult to follow with all the includes and custom objects, functions etc.
View 2 Replies
View Related
Aug 9, 2009
I am trying to use a very simpe wysiwyg-editor. It works fine, except i don't know how to proces the data from the iframe. I simply cant make use of the text written.
View 5 Replies
View Related
Oct 23, 2007
I am trying to load the following html code into a WYSIWYG editor. Basically all I need to do is supply the html code to the 'rte1.html' var and it should load in the editor. However, I am receiving the following error: Code:
View 6 Replies
View Related
Dec 17, 2010
I've got this code to add bbcode into a wysiwyg rich text editor. Everything's working fine except when I want to add an image. The first time the script is run everything is ok, but the second time I get two image inserts, third time I get three and so on.
Here's the code:
Code:
$('#uploads tr').click(function(){
var filename = $(this).text();
var insert = '[img="'+filename+'"]';
textarea.value = textarea.value+insert;
$('#images').hide();
textarea.focus();
});
So first time I click on '#uploads tr', I get [img="filename"], then if I type some more stuff and then add another image, I get [img="filename"] 'Some more stuff' [img="filename2"][img="filename2"], then I'll get three image tags, then four and so on. I can see that it's something to do with the line I've highlighted, but I can't see why, or how to change it.
View 2 Replies
View Related
Mar 30, 2011
I'm using the editor CKEditor [URL] for my forum that I developed. When I create a new topic in my forum is so good, now when I see the issue that the images you upload do not see and I look at Funt code looks like this:
<img alt="" src="http://tecnolatino.com/wp-content/uploads/2010/08/comprar-una-c%C3%A1mara-digital.jpg" style="width: 547px; height: 320px;" />
View 3 Replies
View Related
Nov 27, 2011
I have an image insertion page that is part of a JS WYSIWYG. It works okay, but I would like to add a styled caption bar underneath it.
This is what I'm currently using for the caption (inserted by a button):
Code:
This is the code from the insert image page:
Code:
How do I put the caption bar after the image in the main code?
View 1 Replies
View Related
Jul 14, 2011
How is upload image with progress bar andImage Preview before upload to database?
View 2 Replies
View Related
Apr 4, 2005
Has anyone seen a javascript image editor of any sort?
I can imagine one that allows you to load up an existing image - draw lines, place text, fill etc using something like XMLHttpRequest to work. It would be like a java image editor but lighter. It would then let you save the new drawing.
I've tried looking round but not found much except a business card designer which allows you to type text at predefined locations.
View 5 Replies
View Related
Jun 30, 2009
can we upload image from clientside using jquery.
View 1 Replies
View Related
Jul 13, 2011
Could some-one please tell me (in simple words ? ) why client-side image resizing is not possible by JQuery - not just changing the breadth & height of an image but actually changing the image to decrease the image file's size ?
It seems possible in java & flash . I would like something like in :[URL].. I would like to have a smaller/fixed image size to upload to server, instead of doing the resizing on the server.
View 1 Replies
View Related
Aug 22, 2011
I'm trying to upload an image without submitting the form. Here is what I got code...
View 3 Replies
View Related
Jan 20, 2011
Before I waste time trying to achieve this, could someone possibly tell me whether it is in fact possible to upload an image using the jquery ajax function?I have seen examples on google but they are not too clear how they achieve it.
View 5 Replies
View Related
Jul 20, 2011
Can any one guide me how to submit form data along with the uploaded image using jquery Ajax in PHP?
I have been goggling lot but can't find a solution to this issue.
View 2 Replies
View Related
Feb 22, 2011
I have a page that contains thumbnails for a photo gallery. On this page is a link to upload more images. When you click the link a modal opens that contains an upload form (jquery colorbox in an iframe) which will allow you to upload one image (plus its name, caption, etc) at a time using PHP. When the form is submitted the image uploads and the page refreshes in the modal to allow for more uploads.
Since this modal is sitting on top of the existing gallery thumbnails I'd really like for the user to see the new thumbnail added to the page after it's uploaded.
View 1 Replies
View Related
Nov 15, 2010
I need to build a image editor application where the user can edit images.. I need to integrate this image editor in my Ruby on Rails project.. So does anyone knows any specific site where I can get the JS code of image editor which will be able to integrate into my project
View 2 Replies
View Related
Apr 29, 2010
I have following code, that i am sure can be done in 1 single function, which will ease extending it in future.
Basically when a link is clicked, i wante the upload form to apear....and any other upload forms to disapear.
How can i put those 3 functions in 1?
View 1 Replies
View Related
Nov 17, 2010
I was just wondering if it was possible to upload an image using XHR rather than a hidden iframe? If so, do all modern browsers support it?
View 3 Replies
View Related
Jul 20, 2005
I have a form to allow the user upload images.
The user browse for an image in their computer and click open, th
image to be upload is preview on the img tag.
The script works fine with IE, but does not work with mozilla Netscap
bowsers.
Does anyone knows what could be the problem?
Does the ONchange function works in Netscape?
Or anyone knows a tag that can preview the image file before uploadin
it. Code:
View 4 Replies
View Related