Wie kann man den TinyMCE 3.5.8 Editor erfolgreich mit einem Textarea verbinden?

To successfully connect the TinyMCE 3.5.8 Editor with a textarea, you need to include the necessary TinyMCE script in your HTML file and initialize it on the textarea element using its ID. Make sure to also include the TinyMCE configuration options if needed.

<!DOCTYPE html>
<html>
<head>
    <script src="https://cdn.tinymce.com/3/tinymce.min.js"></script>
    <script>
        tinymce.init({
            selector: 'textarea',  // Use the ID of the textarea element
            plugins: 'autoresize',
            toolbar: 'undo redo | bold italic',
            menubar: false
        });
    </script>
</head>
<body>
    <textarea id="myTextarea"></textarea>
</body>
</html>