Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.
<div id="a">
    <select id="ctl100_placeholder1_ctl201_dpReasons"></select>

</div>

<div id="b">
     <select id="ctl100_placeholder2_ctl202_dpReasons"></select>
</div>
<div id="c">
     <select id="ctl100_placeholder3_ctl203_dpReasons"></select>
</div>

I am using asp.net dropdownlist which renders as above and I can get hold of the dropdown list ending with $("[id$=_dpReasons]") but how do I get it with div id ="a" or "b" or "c"

share|improve this question
2  
This isn't valid HTML / XHTML. The id attribute must be unique and all three of those select lists have an id="ctl100_placeholder1_ctl200_dpReasons". In reality, I imagine this isn't the case, which is why you are searching for "id ending with", but you should update your example to reflect this. – Steve Fenton Aug 18 '10 at 9:43
I have updated it now ..... – chugh97 Aug 18 '10 at 10:49

2 Answers

up vote 6 down vote accepted

with "a" $("#a [id$=_dpReasons]")
with "b" $("#b [id$=_dpReasons]")
with "c" $("#c [id$=_dpReasons]")

share|improve this answer

This can probably be shrunk down but this will get you a combined result (see Multiple Selector (jQuery)):

$("#a[id$=_dpReasons],#b[id$=_dpReasons],#c[id$=_dpReasons]")
share|improve this answer
I had the spaces between the ID selector and the ID match selector, which would have failed, so I just fixed that. – Codesleuth Aug 18 '10 at 9:56

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.