How to show the content in the same page at the right with TinyMCE?












0















I have downloaded TinyMCE and extract it on the project directory.

The html part.



<div id="main">
<div id="container_left">
<textarea id="mytextarea"></textarea>
<input id="submit" type="button" value="submit">
</div>
<div id="show_right"></div>
</div>


The css part.



body{
width:1000px;
height:800px;
border:1px solid black;
}
#container_left{
width:40%;
height:80%;
border:1px solid red;
float:left;
}
#mytextarea{
width:100%;
height:600px;
border:1px solid red;
}
#show_right{
width:40%;
height:600px;
border:1px solid red;
float:right;
}


The left part is a textarea,you can input some text in it and modify it with tinymce;i want to show the content on the right part after you click the submit button.



The js part.



<script src="tinymce/tinymce.min.js"></script>
<script type="text/javascript">
tinymce.init({
selector: '#mytextarea',
});
</script>
</script>
<script>
function showAtRight()
{
var content = document.getElementById("mytextarea").value;
var target = document.getElementById("show_right");
target.innerHTML = content;
}

ob = document.getElementById("mytextarea");
ob.addEventListener("click",showAtRight);
</script>


Why can't show the content in the left on my right part after inputting it is a test on the left container_left and press button submit?



enter image description here










share|improve this question



























    0















    I have downloaded TinyMCE and extract it on the project directory.

    The html part.



    <div id="main">
    <div id="container_left">
    <textarea id="mytextarea"></textarea>
    <input id="submit" type="button" value="submit">
    </div>
    <div id="show_right"></div>
    </div>


    The css part.



    body{
    width:1000px;
    height:800px;
    border:1px solid black;
    }
    #container_left{
    width:40%;
    height:80%;
    border:1px solid red;
    float:left;
    }
    #mytextarea{
    width:100%;
    height:600px;
    border:1px solid red;
    }
    #show_right{
    width:40%;
    height:600px;
    border:1px solid red;
    float:right;
    }


    The left part is a textarea,you can input some text in it and modify it with tinymce;i want to show the content on the right part after you click the submit button.



    The js part.



    <script src="tinymce/tinymce.min.js"></script>
    <script type="text/javascript">
    tinymce.init({
    selector: '#mytextarea',
    });
    </script>
    </script>
    <script>
    function showAtRight()
    {
    var content = document.getElementById("mytextarea").value;
    var target = document.getElementById("show_right");
    target.innerHTML = content;
    }

    ob = document.getElementById("mytextarea");
    ob.addEventListener("click",showAtRight);
    </script>


    Why can't show the content in the left on my right part after inputting it is a test on the left container_left and press button submit?



    enter image description here










    share|improve this question

























      0












      0








      0








      I have downloaded TinyMCE and extract it on the project directory.

      The html part.



      <div id="main">
      <div id="container_left">
      <textarea id="mytextarea"></textarea>
      <input id="submit" type="button" value="submit">
      </div>
      <div id="show_right"></div>
      </div>


      The css part.



      body{
      width:1000px;
      height:800px;
      border:1px solid black;
      }
      #container_left{
      width:40%;
      height:80%;
      border:1px solid red;
      float:left;
      }
      #mytextarea{
      width:100%;
      height:600px;
      border:1px solid red;
      }
      #show_right{
      width:40%;
      height:600px;
      border:1px solid red;
      float:right;
      }


      The left part is a textarea,you can input some text in it and modify it with tinymce;i want to show the content on the right part after you click the submit button.



      The js part.



      <script src="tinymce/tinymce.min.js"></script>
      <script type="text/javascript">
      tinymce.init({
      selector: '#mytextarea',
      });
      </script>
      </script>
      <script>
      function showAtRight()
      {
      var content = document.getElementById("mytextarea").value;
      var target = document.getElementById("show_right");
      target.innerHTML = content;
      }

      ob = document.getElementById("mytextarea");
      ob.addEventListener("click",showAtRight);
      </script>


      Why can't show the content in the left on my right part after inputting it is a test on the left container_left and press button submit?



      enter image description here










      share|improve this question














      I have downloaded TinyMCE and extract it on the project directory.

      The html part.



      <div id="main">
      <div id="container_left">
      <textarea id="mytextarea"></textarea>
      <input id="submit" type="button" value="submit">
      </div>
      <div id="show_right"></div>
      </div>


      The css part.



      body{
      width:1000px;
      height:800px;
      border:1px solid black;
      }
      #container_left{
      width:40%;
      height:80%;
      border:1px solid red;
      float:left;
      }
      #mytextarea{
      width:100%;
      height:600px;
      border:1px solid red;
      }
      #show_right{
      width:40%;
      height:600px;
      border:1px solid red;
      float:right;
      }


      The left part is a textarea,you can input some text in it and modify it with tinymce;i want to show the content on the right part after you click the submit button.



      The js part.



      <script src="tinymce/tinymce.min.js"></script>
      <script type="text/javascript">
      tinymce.init({
      selector: '#mytextarea',
      });
      </script>
      </script>
      <script>
      function showAtRight()
      {
      var content = document.getElementById("mytextarea").value;
      var target = document.getElementById("show_right");
      target.innerHTML = content;
      }

      ob = document.getElementById("mytextarea");
      ob.addEventListener("click",showAtRight);
      </script>


      Why can't show the content in the left on my right part after inputting it is a test on the left container_left and press button submit?



      enter image description here







      javascript tinymce






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Jan 2 at 12:16









      it_is_a_literatureit_is_a_literature

      4171962150




      4171962150
























          1 Answer
          1






          active

          oldest

          votes


















          1














          Once TinyMCE appears on the page the underlying textarea is no longer visible on the page - you are typing into an iFrame. Targeting the original textarea won't do what you want because the content is not there. You can use TinyMCE's APIs to get the content and update the div. Here is an example:



          http://fiddle.tinymce.com/Gegaab/7






          share|improve this answer























            Your Answer






            StackExchange.ifUsing("editor", function () {
            StackExchange.using("externalEditor", function () {
            StackExchange.using("snippets", function () {
            StackExchange.snippets.init();
            });
            });
            }, "code-snippets");

            StackExchange.ready(function() {
            var channelOptions = {
            tags: "".split(" "),
            id: "1"
            };
            initTagRenderer("".split(" "), "".split(" "), channelOptions);

            StackExchange.using("externalEditor", function() {
            // Have to fire editor after snippets, if snippets enabled
            if (StackExchange.settings.snippets.snippetsEnabled) {
            StackExchange.using("snippets", function() {
            createEditor();
            });
            }
            else {
            createEditor();
            }
            });

            function createEditor() {
            StackExchange.prepareEditor({
            heartbeatType: 'answer',
            autoActivateHeartbeat: false,
            convertImagesToLinks: true,
            noModals: true,
            showLowRepImageUploadWarning: true,
            reputationToPostImages: 10,
            bindNavPrevention: true,
            postfix: "",
            imageUploader: {
            brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
            contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
            allowUrls: true
            },
            onDemand: true,
            discardSelector: ".discard-answer"
            ,immediatelyShowMarkdownHelp:true
            });


            }
            });














            draft saved

            draft discarded


















            StackExchange.ready(
            function () {
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f54006231%2fhow-to-show-the-content-in-the-same-page-at-the-right-with-tinymce%23new-answer', 'question_page');
            }
            );

            Post as a guest















            Required, but never shown

























            1 Answer
            1






            active

            oldest

            votes








            1 Answer
            1






            active

            oldest

            votes









            active

            oldest

            votes






            active

            oldest

            votes









            1














            Once TinyMCE appears on the page the underlying textarea is no longer visible on the page - you are typing into an iFrame. Targeting the original textarea won't do what you want because the content is not there. You can use TinyMCE's APIs to get the content and update the div. Here is an example:



            http://fiddle.tinymce.com/Gegaab/7






            share|improve this answer




























              1














              Once TinyMCE appears on the page the underlying textarea is no longer visible on the page - you are typing into an iFrame. Targeting the original textarea won't do what you want because the content is not there. You can use TinyMCE's APIs to get the content and update the div. Here is an example:



              http://fiddle.tinymce.com/Gegaab/7






              share|improve this answer


























                1












                1








                1







                Once TinyMCE appears on the page the underlying textarea is no longer visible on the page - you are typing into an iFrame. Targeting the original textarea won't do what you want because the content is not there. You can use TinyMCE's APIs to get the content and update the div. Here is an example:



                http://fiddle.tinymce.com/Gegaab/7






                share|improve this answer













                Once TinyMCE appears on the page the underlying textarea is no longer visible on the page - you are typing into an iFrame. Targeting the original textarea won't do what you want because the content is not there. You can use TinyMCE's APIs to get the content and update the div. Here is an example:



                http://fiddle.tinymce.com/Gegaab/7







                share|improve this answer












                share|improve this answer



                share|improve this answer










                answered Jan 2 at 15:46









                Michael FrominMichael Fromin

                6,7422820




                6,7422820
































                    draft saved

                    draft discarded




















































                    Thanks for contributing an answer to Stack Overflow!


                    • Please be sure to answer the question. Provide details and share your research!

                    But avoid



                    • Asking for help, clarification, or responding to other answers.

                    • Making statements based on opinion; back them up with references or personal experience.


                    To learn more, see our tips on writing great answers.




                    draft saved


                    draft discarded














                    StackExchange.ready(
                    function () {
                    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f54006231%2fhow-to-show-the-content-in-the-same-page-at-the-right-with-tinymce%23new-answer', 'question_page');
                    }
                    );

                    Post as a guest















                    Required, but never shown





















































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown

































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown







                    Popular posts from this blog

                    Monofisismo

                    Angular Downloading a file using contenturl with Basic Authentication

                    Olmecas