answersLogoWhite

0

Install CKEditor, extract and add in your WEB/INF folder. Include its path in head of html and run it

User Avatar

Wiki User

13y ago

What else can I help you with?

Related Questions

What is the program called that provides text editing and special HTML editing features?

If you want a rich text editor (used inside a website) you can use CKEditor or tinymce (google it to find downloads and a howto)


Can HTML form be sent by Ajax?

Yes. You can use AJAX to submit the form. You can also use AJAX to get the actual HTML to produce the form (although you might also simply use that AJAX call to describe the form and then produce the HTML on the receiving end.)


How do you go from HTML form to php?

Build your form in HTML and specify your PHP file in the action of the document. HTML does the form stuff, PHP the processing (although you can - of course - use HTML inside PHP via print() or echo(), too)


What is the HTML form process?

HTML: Hyper text markup language Form is an object of a HTML..Inside it one can use many objects like text box,button. <form name="formname" id="f1"> our content </form>


What three tags create the body of the form in HTML?

A form can be created in HTML using the <form> tag. Inside form tag we can use elements like input, submit or reset.


How do you use HTML to remove HTML you already have?

I don't think you can use HTML to remove HTML, you can hide HTML commands with <!-- TEXT OR SCRITPS HERE --> Any scripts between the <!-- AND --> wont show up on the HTML document. using those are good for leaving reminds like where a form starts and stops or to place something there that you might use later.


How do you check users registration in your HTML form?

To check the user's registration in an HTML form you would need to use another language, this time a scripting language, not a markup language.


Can you use HTML forms on a WordPress site without using a plugin?

Yes, you are able to use HTML forms on a WordPress site without a plugin. When you are editing whatever post or page you are making the form on, switch to HTML view from WYSIWIG Editor. Then, simply use the regular tags you use to create forms on an HTML document.


Can you use body tag and form tag together in HTML?

If you want to maintain W3C compliance, you can't use the FORM tag without the BODY tag. The FORM tag must be contained within the BODY tag. Like this <html> <head> <title>Our Cool Form Page</title> </head> <body> <form method="post" action="example.php"> <input type="submit" value="submit"> </form> </body> </html>


How do you create forms using ASP and HTML?

You can use a WYSIWYG html editor to drag and drop html form controls and program their function. An html editor such as Microsoft Front Page or Adobe DreamWeaver can do these tasks.


Which attribute specifies the submit URL in a form tag in HTML?

Use the "action" attribute of a FORM element to specify the URI of the form processor.


How do you use PHP in HTML?

You can't use PHP in an HTML document, but you can use HTML in PHP script.