Jquery text editing component

Asked

Viewed 140 times

1

I need to use an editor Jquery that comes closer to Word.

  • Which one should I use?
  • Does anyone have any indication?

2 answers

5


  • @Marconi Which one do you use? You can edit your question commenting on each component, so I can improve my answer?

  • @Marconi Open another question and expose your code that we can help you.

1

You can use the Summernote.

Characteristics:

  • Support for 3.x. x bootstrap
  • Take only 80kb all (js and css)
  • Intelligent interaction with the user

Support in the browsers:

  • Safari
  • Chrome
  • Firefox
  • Opera
  • Internet Explorer 9+

Example:

$(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>

More Examples [Summernote]

  • 1

    I thought the component was pretty cool too .

Browser other questions tagged

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