append d3 text to existing html div
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
add a comment |
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
add a comment |
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
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
javascript d3.js
edited Nov 18 '18 at 6:51
jumpman8947
asked Nov 18 '18 at 6:38
jumpman8947jumpman8947
27819
27819
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
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>
add a comment |
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
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
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>
add a comment |
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>
add a comment |
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>
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>
answered Nov 18 '18 at 8:10
jrookjrook
1,61011022
1,61011022
add a comment |
add a comment |
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.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
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