Hi
I'm working on trying to add a editable and savable HTML box for our Client to be able to put comments in their reporting and for Users of the report to also add comments.
I've written this code and it works to be editable but the contents doesn't save.
Does anyone know how to make this work?
<button class="btn" id="save" enabled>SAVE</button>
<div id="edit" contenteditable="true" style="border: 0px solid gray;border-radius:1px 1px 1px 1px;box-shadow: 0 1px 1px rgba(0, 0, 0, 0) inset;background-color: #b3ccff;padding: 0px;height:99%;margin:0px">
<p style="font-size:15px"><font color="#000000">Delete to start writing comments
</div>

Thanks