1
I need to use an editor Jquery that comes closer to Word.
- Which one should I use?
- Does anyone have any indication?
1
I need to use an editor Jquery that comes closer to Word.
5
Tinymce is one of the most famous:
The most complete I believe is the Ckeditor:
There’s also Aloha, but I’ve never used that:
1
You can use the Summernote.
Characteristics:
$(document).ready(function() {
$('#summernote').summernote();
});
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.0/jquery.min.js"></script>
<link href="http://netdna.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.css" rel="stylesheet">
<link href="http://netdna.bootstrapcdn.com/font-awesome/4.3.0/css/font-awesome.css" rel="stylesheet">
<script src="http://netdna.bootstrapcdn.com/bootstrap/3.3.5/js/bootstrap.js"></script>
<link href="http://cdnjs.cloudflare.com/ajax/libs/summernote/0.7.3/summernote.css" rel="stylesheet">
<script src="http://cdnjs.cloudflare.com/ajax/libs/summernote/0.7.3/summernote.js"></script>
<div id="summernote">Hello Summernote</div>
I thought the component was pretty cool too .
Browser other questions tagged jquery text-editor
You are not signed in. Login or sign up in order to post.
@Marconi Which one do you use? You can edit your question commenting on each component, so I can improve my answer?
– Leonel Sanches da Silva
@Marconi Open another question and expose your code that we can help you.
– Leonel Sanches da Silva