I have this code
<div class="data">
<div class="another"></div>
<!-- need to add element here -->
</div>
I want to add the element where I put comment using jQuery how I can append sibling of another using 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.
If you specifically want to insert after the
anotherdivelement, try insertAfter:In the
$('.another')part, you can otherwise specify the target more precisely.