I have been utilizing the Bootstrap WYSIWYG rich text editor to create HTML email templates. The editor functions perfectly when checked in the browser.
To fetch the HTML contents of the editor div using JQuery, I used $("#editor").html();
In an attempt to retrieve the HTML content on the server side, I included a runat="server" attribute to the editor div. However, I am facing difficulties in fetching the HTML content on the server side.
I even tried storing the HTML content in a hidden field and accessing it on the server side, but unfortunately, that also did not work out :(
Any suggestions from anyone out there?