I have to initialize tinymce from the ajax-requested script get.edit.php.
get.edit.php contains
<textarea id="tinymce" rows="8" cols="80" style="width:100%"></textarea>
<script type="text/javascript">
$("#tinymce").tinymce({
/* lot of tinymce data */
});
</script>
and loads data into <div id="calldata"> in the main script. But after the second request clicking on link_2, link_3, ... I receive only an empty textfield without tinymce. Only reloading of index.php helps to correct a situation, but only once besides.
Can someone explain how to solve this problem? Thanx.
Edit: Solution found here: http://tinymce.moxiecode.com/punbb/viewtopic.php?pid=22977 , but not for jQuery.
