Iam using Tinymce Editor for creating some content.I used textarea for getting tinymce editor.
For edting i have used this code
<textarea id="page_content_id" name="page_content"><?php echo $page_content;?></textarea>
So the saved value will be in tiny mce editor.If i add something to the editor how i can get the values in javascript using
document.getElementById("page_content_id").value
This wont give the new value.How i can get the entire value.Thanks in advance