I have two different elements with the same id. How do I select the div element with id="abc" in jQuery.
For example:
<select id="abc">
<option>jhon</option>
<option>Richard</option>
</select>
<div id="abc">
</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.
It is given, that you cannot have multiple identic
IDon same page.The page won’t be (X)HTML Valid DOM Document
If you do it, then you can’t find elements by their id using javascript call
getElementById(String)See references:
For targeting multiple
DIVelements on page, use.classinsteadand find them by jQuery library