I have setup a div for the summernote to alter text pulled from a database.
Using the summernote API
I came up with this solution:
$(document).ready(function() { $('#summernote').summernote({ onKeyup: function(e) { $("#lawsContent").val($("#summernote").code()); }, height: 300, }); });