Я ищу пример, который позволяет мне обновить мою текстовую среду tinyMCE, когда я нажимаю на input type = "button" через ajax
моя идея состоит в том, что мой tinyMCE сохраняется перед запуском другой функции без необходимости нажимать кнопку 'submit' name = 'save'
этот пример не работает, или я не знаю, как получить значение articleInfo.append ("description", _ ("description "). значение);
<html>
<head>
<script src="https://link-to-tiny.mce/cdn-or-locally/hosted/tinymce"></script>
<script>tinymce.init({ selector:'#description' });</script>
</head>
<body>
<!-- FORM -->
<div>
<label>Description</label>
<textarea name="description" id="description" placeholder="Type description here . . ."></textarea>
<!-- ...and some submit button that calls the JavaScript saveInfo() function below -->
</div>
<!-- JavaScript SECTION -->
<script>
function saveInfo() {
event.preventDefault();
// This line makes TinyMCE work with AJAX when we're using a textarea field.
tinyMCE.triggerSave();
// "articleInfo" is a new variable that holds the contents of our text input (or textarea).
// It is used later in our AJAX call.
articleInfo.append("description", _("description").value);
if (window.XMLHttpRequest) {xmlhttp = new XMLHttpRequest();} else {xmlhttp = new ActiveXObject("Microsoft.XMLHTTP");}
xmlhttp.open("GET","page_ajax.php?var="+articleInfo,true);
xmlhttp.send(); }
</script>
</body>
пожалуйста