How do you replace a <ul> inside a div by using the div’s id in jQuery,
<div id="example">
<ul>
Content To Be Replaced...........
<ul>
</div>
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.
You can select the div with the ID selector
#. A space is used as an descendant selector, and.textchanges the text content. You could also use.htmlto replace HTML content.