I have a set of 3 radio buttons with these element IDs:
id='details_first'
id='details_second'
id='details_third'
How to get all the elements whose identifier begins with 'details_'?
EDIT
What I'm actually trying to do is: Each radio button has an associated div that I want to display when the radio button is clicked. At one time, only one radio button was active, so you only need to show the div for this radio button (all others should be hidden). So the code for this is what I have: (sorry, this is a little wider):
<input id="details_first" name="details" type="radio" value="first" onclick="$('details_*').hide();$('details_first_div').show();" />First<br/>
<div id="details_first_div" style="display:none">div for details_first</div>
<input id="details_second" name="details" type="radio" value="second" onclick="$('details_*').hide();$('details_second_div').show();" />Second<br/>
<div id="details_second_div" style="display:none">div for details_second</div>
Or is there a better best way to do this? (I use Ruby on Rails). Maybe by selecting an attribute name- but how?