How to get post_content while the post is being edited

All the rendered content of the page is available to the page. How would it be rendered otherwise?

jQuery('#content-textarea-clone').html()

gives you the current contents of the editor window, using jQuery. And

jQuery('textarea#content').html()

holds the initial content of the page (the saved one).