No Description Available
1
Summernote is a open source light weight javascript WYSIWYG editor, its full version currently uses bootstrap as a dependency.You can use Summernote without Bootstrap using summernote-lite.js and summernote-lite.css.
onex
Summernote is a front-end JavaScript library that of WYSIWYG editors.
Smart WYSIWYG editor components with collaborative editing. Join Microsoft, Mozilla, Adobe and 24k+ other happy customers.
$('#summernote').summernote({ placeholder: 'Hello bootstrap 4', tabsize: 2, callbacks:{ onBlur:function(){ $('#des').val($(this).summernote("code")); } }, height:200, codemirror: { // codemirror options theme: 'monokai' } }); $('#summernote').summernote("code");
<section> <div class="container"> <div class="card mt-5 mb-5"> <div class="card-body"> <h4 class="card-title">Summernote Light WYSIWYG without Bootstrap</h4> <div id="summernote"></div> <div class="form-group mt-4"> <label>Get Source code on Blur</label> <input id="des" class="form-control"> </div> </div> </div> </div> </section>