Does anyone know where I can find material for per toolbar in a Textarea, to use with php in the posting area?

Asked

Viewed 58 times

0

Exemplo: Essa barra de ferramentas

I want to put a toolbar in this style in a text area, to use for styling articles for posts, someone can tell me where I find material, or perhaps, already teach or send some code for me to analyze and such to redo?

  • Search for "WYSIWYG HTML Editor" in Google. It will appear some famous like Tinymce, Summernote, Ckeditor among others.

  • google ckeditor

1 answer

0


https://www.tinymce.com/

To use is simple, just add this script into your code:

<script src="https://cloud.tinymce.com/stable/tinymce.min.js"></script><script>tinymce.init({ selector:'textarea' });</script>

This script will make all your inputs with the tag textarea already stay with the editor.

Browser other questions tagged

You are not signed in. Login or sign up in order to post.