I have a select drop down filled with options and then I have two radios like so...
<form>
<select id="drop_down">
<option value="1">One</option>
<option value="2">Two</option>
<option value="3">Three</option>
<option value="4">Four</option>
</select>
<div id="radios">
<input type="radio" value="blue" id="blue" name="radio_option">Blue</input>
<input type="radio" value="green" id="green" name="radio_option">Green</input>
</div>
</form>
My goal is that once a user makes a selection in the drop down and then selects a radio button... then the select drop down will (for lack of a better term) "lock up", preventing the user from going back and changing their drop down selection.
I know there's a way in jQuery to accomplish this... however I have not been able to find a way...
This is my jQuery so far (it's wrong)... I am not sure what the event should be after the $('#drop_down')
....
$('#radios').change(function(){
$('#drop_down').removeProp(select);
});
I realize this may be a simple solution... I'm just not finding the right event handler in the jQuery Docs...