How to use rich text box editor in web page.
2063
05-Jan-2016
I want to use rich text box editor in web page. How to use this please help me.
Updated on 03-Jul-2023
Aryan Kumar
03-Jul-2023There are many ways to use a rich text box editor in a web page. Here are a few examples:
<textarea>element can be used to create a rich text box editor. However, you will need to write JavaScript code to provide the formatting and other features.Here is an example of how to use a third-party library to create a rich text box editor:
HTML
This code will create a rich text box editor using the TinyMCE library. The editor will be initialized when the page loads and will be bound to the
#my-rich-text-boxelement.Here is an example of how to use a native HTML element to create a rich text box editor:
HTML
This code will create a rich text box editor using the
<textarea>element. The editor will be styled to have a width of 100% and a height of 200px. The JavaScript code will add some formatting to the editor, such as a heading and a paragraph. The code will also add an image to the editor.Here is an example of how to use a web component to create a rich text box editor:
HTML
This code will create a rich text box editor using the
<rich-text-editor>web component. The editor will be rendered when the page loads.Anonymous User
08-Jan-2016@{ ViewBag.Title = "Editor"; Layout = "~/Views/Share/_Layout.cshtml"; } <script src="//cdn.tinymce.com/4/tinymce.min.js"></script> <script> tinymce.init({ selector: 'textarea', height: 500, file_browser_callback_types: 'image', file_browser_callback: function (field_name, url, type, win) { $('#fileinput').trigger('click'); $('INPUT[type="file"]').change(function () { var ext = this.value.match(/\.(.+)$/)[1]; switch (ext) { case 'jpg': case 'jpeg': case 'png': case 'gif': var fileUpload = $("#fileinput")[0]; var reader = new FileReader(); reader.readAsDataURL(fileUpload.files[0]); reader.onload = function (e) { win.document.getElementById(field_name).value = e.target.result; } break; default: win.document.getElementById(field_name).value = ''; this.value = ''; } }); }, plugins: [ 'advlist autolink lists link image charmap print preview anchor', 'searchreplace visualblocks code fullscreen', 'insertdatetime media table contextmenu paste code' ], toolbar: 'insertfile undo redo | styleselect | bold italic | alignleft aligncenter alignright alignjustify | bullist numlist outdent indent | link image', content_css: [ '//fast.fonts.net/cssapi/e6dc9b99-64fe-4292-ad98-6974f93cd2a2.css', '//www.tinymce.com/css/codepen.min.css' ] }); </script> <input type="file" id="fileinput"/> <textarea>Easy (and free!) You should check out our premium features.</textarea>Anonymous User
05-Jan-2016The HTML editor give to you as functionality to change the look of your text with HTML markup. we can be used it in both entries and comments.
for example goto https://www.tinymce.com/ download editor and use like below: