I have a DIV containing text. Previously I just tried setting new HTML like this:
$("#exp").html(" - " + data.exp);
Now I want to add some HTML to the end of the HTML within another DIV. Is this possible with jQuery?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
Amazingly, there is a method called
.append(), which does exactly what you want.