0

I have a object and I attempting to add both the name and description to the html body:

$('div#mydiv').html((j.root[D - 1].Name), (j.root[D - 1].Description));

However only the name is showing when I run it?

1 Answer 1

2

.html does not take multiple arguments. Use + for concatenation to combine all the strings into a single argument.

$('div#mydiv').html(j.root[D-1].Name + ' ' + j.root[D-1].Description);
Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.