append d3 text to existing html div












0















I have a div in html that looks like



<div class="newfield col-sm-4">
<h2>42</h2>
<h3>Appending above</h3>
</div>


And code in D3(v4) that looks like



var word = "somestring";
d3.select('.newfield')
.append("h2")
.html(word.join('<br/>'));


I want the D3 text of "somestring to take place of '42' in the original html.



So the end result will look like



<div class="newfield col-sm-4">
<h2>somestring</h2>
<h3>Appending above</h3>
</div>


My current D3 code is not appending anything to the screen.
My scripts are imported in this order



<script src="http://d3js.org/d3.v4.min.js"></script>
<script src="http://d3js.org/queue.v1.min.js"></script>
<script src="http://d3js.org/topojson.v1.min.js"></script>
<script src="js/customd3.js"></script>
<script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous"></script>
<script src="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/js/bootstrap.min.js" integrity="sha384-ChfqqxuZUCnJSK3+MXmPNIyE6ZbWh2IMqE241rYiqJxyMiZ6OW/JmZQ5stwEULTy" crossorigin="anonymous"></script>









share|improve this question





























    0















    I have a div in html that looks like



    <div class="newfield col-sm-4">
    <h2>42</h2>
    <h3>Appending above</h3>
    </div>


    And code in D3(v4) that looks like



    var word = "somestring";
    d3.select('.newfield')
    .append("h2")
    .html(word.join('<br/>'));


    I want the D3 text of "somestring to take place of '42' in the original html.



    So the end result will look like



    <div class="newfield col-sm-4">
    <h2>somestring</h2>
    <h3>Appending above</h3>
    </div>


    My current D3 code is not appending anything to the screen.
    My scripts are imported in this order



    <script src="http://d3js.org/d3.v4.min.js"></script>
    <script src="http://d3js.org/queue.v1.min.js"></script>
    <script src="http://d3js.org/topojson.v1.min.js"></script>
    <script src="js/customd3.js"></script>
    <script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous"></script>
    <script src="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/js/bootstrap.min.js" integrity="sha384-ChfqqxuZUCnJSK3+MXmPNIyE6ZbWh2IMqE241rYiqJxyMiZ6OW/JmZQ5stwEULTy" crossorigin="anonymous"></script>









    share|improve this question



























      0












      0








      0








      I have a div in html that looks like



      <div class="newfield col-sm-4">
      <h2>42</h2>
      <h3>Appending above</h3>
      </div>


      And code in D3(v4) that looks like



      var word = "somestring";
      d3.select('.newfield')
      .append("h2")
      .html(word.join('<br/>'));


      I want the D3 text of "somestring to take place of '42' in the original html.



      So the end result will look like



      <div class="newfield col-sm-4">
      <h2>somestring</h2>
      <h3>Appending above</h3>
      </div>


      My current D3 code is not appending anything to the screen.
      My scripts are imported in this order



      <script src="http://d3js.org/d3.v4.min.js"></script>
      <script src="http://d3js.org/queue.v1.min.js"></script>
      <script src="http://d3js.org/topojson.v1.min.js"></script>
      <script src="js/customd3.js"></script>
      <script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous"></script>
      <script src="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/js/bootstrap.min.js" integrity="sha384-ChfqqxuZUCnJSK3+MXmPNIyE6ZbWh2IMqE241rYiqJxyMiZ6OW/JmZQ5stwEULTy" crossorigin="anonymous"></script>









      share|improve this question
















      I have a div in html that looks like



      <div class="newfield col-sm-4">
      <h2>42</h2>
      <h3>Appending above</h3>
      </div>


      And code in D3(v4) that looks like



      var word = "somestring";
      d3.select('.newfield')
      .append("h2")
      .html(word.join('<br/>'));


      I want the D3 text of "somestring to take place of '42' in the original html.



      So the end result will look like



      <div class="newfield col-sm-4">
      <h2>somestring</h2>
      <h3>Appending above</h3>
      </div>


      My current D3 code is not appending anything to the screen.
      My scripts are imported in this order



      <script src="http://d3js.org/d3.v4.min.js"></script>
      <script src="http://d3js.org/queue.v1.min.js"></script>
      <script src="http://d3js.org/topojson.v1.min.js"></script>
      <script src="js/customd3.js"></script>
      <script src="https://code.jquery.com/jquery-3.3.1.slim.min.js" integrity="sha384-q8i/X+965DzO0rT7abK41JStQIAqVgRVzpbzo5smXKp4YfRvH+8abtTE1Pi6jizo" crossorigin="anonymous"></script>
      <script src="https://stackpath.bootstrapcdn.com/bootstrap/4.1.3/js/bootstrap.min.js" integrity="sha384-ChfqqxuZUCnJSK3+MXmPNIyE6ZbWh2IMqE241rYiqJxyMiZ6OW/JmZQ5stwEULTy" crossorigin="anonymous"></script>






      javascript d3.js






      share|improve this question















      share|improve this question













      share|improve this question




      share|improve this question








      edited Nov 18 '18 at 6:51







      jumpman8947

















      asked Nov 18 '18 at 6:38









      jumpman8947jumpman8947

      27819




      27819
























          1 Answer
          1






          active

          oldest

          votes


















          1














          I would have done such a task with plain Javascript and not involved an external library.



          But if it has to be done using D3:






          d3.selectAll('.newfield h2')
          .text("somestring")
          //.append("br") //not really necessary!

          <script src="https://d3js.org/d3.v5.min.js"></script>
          <div class="newfield col-sm-4">
          <h2>42</h2>
          <h3>Appending above</h3>
          </div>








          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%2f53358493%2fappend-d3-text-to-existing-html-div%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














            I would have done such a task with plain Javascript and not involved an external library.



            But if it has to be done using D3:






            d3.selectAll('.newfield h2')
            .text("somestring")
            //.append("br") //not really necessary!

            <script src="https://d3js.org/d3.v5.min.js"></script>
            <div class="newfield col-sm-4">
            <h2>42</h2>
            <h3>Appending above</h3>
            </div>








            share|improve this answer




























              1














              I would have done such a task with plain Javascript and not involved an external library.



              But if it has to be done using D3:






              d3.selectAll('.newfield h2')
              .text("somestring")
              //.append("br") //not really necessary!

              <script src="https://d3js.org/d3.v5.min.js"></script>
              <div class="newfield col-sm-4">
              <h2>42</h2>
              <h3>Appending above</h3>
              </div>








              share|improve this answer


























                1












                1








                1







                I would have done such a task with plain Javascript and not involved an external library.



                But if it has to be done using D3:






                d3.selectAll('.newfield h2')
                .text("somestring")
                //.append("br") //not really necessary!

                <script src="https://d3js.org/d3.v5.min.js"></script>
                <div class="newfield col-sm-4">
                <h2>42</h2>
                <h3>Appending above</h3>
                </div>








                share|improve this answer













                I would have done such a task with plain Javascript and not involved an external library.



                But if it has to be done using D3:






                d3.selectAll('.newfield h2')
                .text("somestring")
                //.append("br") //not really necessary!

                <script src="https://d3js.org/d3.v5.min.js"></script>
                <div class="newfield col-sm-4">
                <h2>42</h2>
                <h3>Appending above</h3>
                </div>








                d3.selectAll('.newfield h2')
                .text("somestring")
                //.append("br") //not really necessary!

                <script src="https://d3js.org/d3.v5.min.js"></script>
                <div class="newfield col-sm-4">
                <h2>42</h2>
                <h3>Appending above</h3>
                </div>





                d3.selectAll('.newfield h2')
                .text("somestring")
                //.append("br") //not really necessary!

                <script src="https://d3js.org/d3.v5.min.js"></script>
                <div class="newfield col-sm-4">
                <h2>42</h2>
                <h3>Appending above</h3>
                </div>






                share|improve this answer












                share|improve this answer



                share|improve this answer










                answered Nov 18 '18 at 8:10









                jrookjrook

                1,61011022




                1,61011022






























                    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%2f53358493%2fappend-d3-text-to-existing-html-div%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







                    這個網誌中的熱門文章

                    Tangent Lines Diagram Along Smooth Curve

                    Yusuf al-Mu'taman ibn Hud

                    Zucchini