In this example I will give you example of tinymce editor, Tinymce editor is rich-text opensource editor, It has the ability to convert HTML textarea fields or other HTML elements to editor instances.

Tinymce provides many features like PowerPaste, Spell Checker Pro, Image Upload, Accessibility Checker, Link Checker, Format Painter, Premium Skins & Icons and many more.

I have added code below for tinymce example.

<html>
<title>How to install TinyMCE editor in laravel - websolutionstuff.com</title>
<head>
  <script src="https://cdn.tiny.cloud/1/no-api-key/tinymce/5/tinymce.min.js" referrerpolicy="origin"></script>
  
</head>
<body>
    <h1 style="text-align: center;">How to install TinyMCE editor in laravel - websolutionstuff.com</h1>
  <textarea id="texteditor">websolutionstuff.com</textarea>
</body>
</html>
<script>
tinymce.init({
    selector: '#texteditor',
    height:350,
});
</script>

This article is originally post on : https://websolutionstuff.com/post/how-to-install-tinymce-editor-in-laravel


Read Also : How To Add Ckeditor In Laravel

Read Also : How To Add Summernote Editor In Laravel

#laravel #jquery #tinymce editor #text editor #install #use

4.75 GEEK