I have two radio buttons. each radio button has two TextBox I just want to do if first radio button is clicked then other radio button containing textboxes should be disabled and vice versa.
I have two radio buttons. each radio button has two TextBox I just want to do if first radio button is clicked then other radio button containing textboxes should be disabled and vice versa.
Share Improve this question edited Jun 22, 2013 at 8:28 Reyno 58213 silver badges29 bronze badges asked Jun 22, 2013 at 8:20 Devendra526Devendra526 71 gold badge1 silver badge3 bronze badges 2- 4 please provide code, and/or jsfiddle. – sinisake Commented Jun 22, 2013 at 8:23
- actually right now I cant provide code because that code is at my office desktop. I have just stuck to this scenario at office. – Devendra526 Commented Jun 22, 2013 at 8:38
3 Answers
Reset to default 5you can use jquery click event, bined with :checked filter
try this fiddle http://jsfiddle/8NynQ/
<div>
<label for="radio1">
<input type="radio" name="test" value="radio1" /> Radio 1
</label>
<input type="text" name="for_radio1[]" class="radio1" disabled="true" />
<input type="text" name="for_radio1[]" class="radio1" disabled="true" />
<label for="radio2">
<input type="radio" name="test" value="radio2" /> Radio 2
</label>
<input type="text" name="for_radio2[]" class="radio2" disabled="true" />
<input type="text" name="for_radio2[]" class="radio2" disabled="true" />
</div>
and here is the js
$(document).ready(function(){
$('input[type=radio][name=test]').click(function(){
var related_class=$(this).val();
$('.'+related_class).prop('disabled',false);
$('input[type=radio][name=test]').not(':checked').each(function(){
var other_class=$(this).val();
$('.'+other_class).prop('disabled',true);
});
});
});
Example:
HTML
<form id="myform" name="myform" action="" method="post">
<input type="radio" name="group1" value="Milk" checked="checked" />Milk
<input type="text" name="text1" value="milk1" />
<input type="text" name="text2" value="milk2" />
<br/>
<input type="radio" name="group1" value="Cheese" />Cheese
<input type="text" name="text3" value="cheese1" disabled="disabled" />
<input type="text" name="text4" value="cheese2" disabled="disabled" />
</form>
Javascript
var form = document.forms['myform'];
form.group1[0].onfocus = function () {
form.text1.disabled = form.text2.disabled = false;
form.text3.disabled = form.text4.disabled = true;
}
form.group1[1].onfocus = function () {
form.text1.disabled = form.text2.disabled = true;
form.text3.disabled = form.text4.disabled = false;
}
jsfiddle
Is this what you mean?
http://jsfiddle/UuwVG/
HTML:
<input type="radio" id="textbox1" onclick="check(this.id)" checked="true" />
<textarea id="textarea1"></textarea>
<br>
<input type="radio" id="textbox2" onclick="check(this.id)"/>
<textarea id="textarea2" disabled="true"></textarea>
Javascript:
function check(id) {
var thistextbox = id.replace('box', 'area');
var othertextarea = 'textarea1';
if(id.slice(-1) == '1'){
othertextarea = 'textarea2';
}
var othertextbox = othertextarea.replace('area', 'box');
document.getElementById(id).checked = true;
document.getElementById(thistextbox).disabled = false;
document.getElementById(othertextarea).disabled = true;
document.getElementById(othertextbox).checked = false;
}