JQuery :: Recommend WYSIWYG HTML Editor?

Nov 15, 2010

recommend a good WYSIWYG HTML editor for jQuery?

View 5 Replies


ADVERTISEMENT

Pre Load Html Code Into WYSIWYG Editor

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

JQuery :: How Does WYSIWYG Editor Work

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

JQuery :: Functioning Of Iframe (editor WYSIWYG)?

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

Jquery :: WYSIWYG Rich Text Bbcode Editor

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

JQuery :: Hiding Icons On WYSIWYG Editor Until User Click On It?

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

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 View Related

Javascript WYSIWYG Editor

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

WYSIWYG Editor Controls On <textarea>

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

Submit A Textarea/iframe With Wysiwyg-editor

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

String Logic - Add BBCode Into WYSIWYG Rich Text Editor

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

WYSIWYG Html Editors For Use In The Browser

Dec 14, 2005

Has anyone ever used this WYSIWYG JavaScript editor?
http://tinymce.moxiecode.com/index.php

I am hoping it can be a solution to edit a few areas on a site I am developing for non-html editors.

The part that confuses me with all these editors is how you access this edit mode?! I understand it all works with making areas you want to be editable into text areas, but how do the groups of users who want to edit those pages/areas actually access the page in WYSIWYG editor mode.

View 12 Replies View Related

JQuery :: Get Text Of HTML Editor?

Mar 6, 2011

HTML Editor is a AjaxControlToolkit that i registered it on my page (it's similar to the text box that i'm now writing my Question)... I want to get Content (Text) of HTML Editor with JQuery... I tried $('#HE').val() and $('#HE').text() but i couldn't get the text! I want to get the text and set the text into a div!

View 2 Replies View Related

Use Html Editor In Our Webpage?

Aug 31, 2010

I have one web page, in it i want to get the content from user for some description.I used earlier as a text area field.Now i want to put simple HTML tags included editor.(as like we enter this description in sitepoint).

View 2 Replies View Related

Custom HTML/CSS Editor Possible?

Jul 8, 2009

I know very little js, but I've been reading up on it, mainly for one reason. (I'm a PHP programmer and I've just used js for small tasks like client-side form validation, that sort of thing).

What I want to do is make a textarea with buttons, similar to a BB editor, but which will use defined html tags; I'll use <div style="box1"> and <h1 style="greenunderline"> for examples. I've tried to modify some open source editors and get utterly lost in trying, and I'm not sure that approach would work anyway.

The buttons would need to function two ways, again like a BB editor.

1) It could simply insert the start and end tags in the textarea;

2) If text were selected, it would put the tag in front of the selection and the end tag after.

If I can get this done, I think I can handle a preview function. I haven't even gotten close to getting javascript to "get" selected text inside a textarea.

View 1 Replies View Related

CK Editor Not Sending Rich HTML?

Feb 21, 2011

I am having a bit of a problem sending rich html emails. I just installed CK Editor on my hosting account and it appears to be working fine. But instead large colored fonts, I'm getting html tags only in my email. Links and emails appear to be working fine, though... So instead looking like this: Big Bold Blue. It looks like this: <p><span style='color: rgb(0, 0, 255);'><strong>Big Bold Blue.</strong></span></p> I also tried using mail() function in php, on its own, but that didn't work either.

View 4 Replies View Related

Make A Simple Txt / Html Editor?

May 2, 2006

Im trying to make a simple txt/html editor...

I need to apply specific formatting to selected text via a button.
for example, I select some text, click the 'bold' button which then replace the selected text with <b>selected text</b>

Is there a way to do this ?

View 1 Replies View Related

HTML In Sharepoint 'Content Editor Web Part'

Feb 1, 2010

I'm trying to put in my javascript codes and html codes into the sharepoint "content editor web part" source editor.i have this set of javascript codes that needs to work together with the html codes.i created a link using ahref with the tagname as "homepage". i want to hide this "homepage" link using javascript codes.this is the codes that I'm using right now. the html part is working fine[the link "Homepage" is being display and is able to click on] but not for the javascript part.

View 7 Replies View Related

Apply JS To Websites - Recommend Any Q And A Style Tutorials?

Sep 13, 2011

I have been studying Javascript for a couple of months now, but have kind of come to a dead end in terms of in what instances will I need to apply JS to websites and can anyone recommend any Q and A style tutorials, to test myself,My current knowledge (which is very basic) so far contains being able to:

Write a prompt
Write a confirm
write a basic for loop
write a basic while loop
write an array

Any guidance on scenarios to use to demo JS or a good tutorial website for real world scenarios,

View 1 Replies View Related

Recommend A Good Javascript Drop Down Menu?

Jun 6, 2005

Can anyone recommend a good javascript drop-down menu?

I am searching for one with these features:
- can easily be used for horizontal and vertical menus;
- is search engine friendly (not mandatory);
- resizes properly when increasing/decreasing browser text sizes;

There are so many choices, and so little time, so if you know of any great ones that are free or affordable, please let me know.

View 3 Replies View Related

Recommend A Good Free Search Engine?

Oct 5, 2010

can any recommend a good free javascript search engine?It must work locally i.e. not require a server to work

View 6 Replies View Related

Recommend An Easy-to-use Spell Checker (either AJAX, DHTML Or Javascript)

May 3, 2006

I am looking to use a spell checker in my multi-field forms and am trying to
find something open source and easy to install and use.

It could be either AJAX, DHTML or Javascript.

View 3 Replies View Related

JQuery :: Apply WYSIWYG On Loaded Textareas?

Jul 23, 2011

I want to apply wysiwyg plugin on loaded textareas but i don't know how?

There is live() function but i don't know how to use it in this case ?!!

function InitWYSIWYG () {
$('.jwysiwyg').wysiwyg({
controls: {
strikeThrough : { visible : true },

[Code].....

View 3 Replies View Related

JQuery :: Restricting Datepicker Input And WYSIWYG

Jun 8, 2010

With this setup it is possible to have the user enter an invalid value "1899/5/11". The text box show this value.

1) If it is an invalid value, I don't want to allow it.The user can enter a "short" year like "51/8/21" which is actually "1951/8/11".

2) Since Datepicker is making assumptions about the "cutoff year", I would want to explicitly show in the input control the assumed year.The user can input an incomplete entry like "5/2".

3) Since this is also invalid input, I don't want to allow it.The user can input a bogus day value as in "1956/08/44". Datepicker assumes/transforms the day to 4. This is not WYSIWYG.

4) In this case, this is also bad data entry and I don't want to allow it.

Is there a better way than what I have done in onClose event handler?My goal here is to not allow bad data entry and to also make assumptions made by Datepicker consistent with WYSIWYG.[code]

View 2 Replies View Related

WYSIWYG And DOM Tab

Aug 8, 2005

I am using dom tabs and tinyMCE together on a form for people to edit their own personal information.

The problem is that domtab sets display to none and block of each tabbed section and tinyMCE does not like this. If you switch away from the tab that has tinyMCE and then back to it, you cannot add more text when using gecko browsers (IE works fine).

If you refresh the page after switching tabs, the wysiwig editor area works fine. Basically what I need to do is repaint tinyMCE each time I switch tabs. I tried to use the tinyMCE repaint function but I got an error saying that the function does not exist.

Has anyone had a similar problem or does anyone know how to refresh tinyMCE whenever you feel like it?

View 1 Replies View Related

Wysiwyg

Dec 5, 2007

I'd like to add a wysiwyg feature on a textera field. Is there a recommended way of doing it? My searches didn't bring nothing.

View 1 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved