I have two radio button, i click one radio button display
one dropdown box, one text field. and then click another
radio button display one text field.so any one give me good
idea plz.....i used <div id="" style=display:none> but not
work..

Answer Posted / monika

Please try following:

<html>
<head>
<script language='javascript'>
function display(){
if(document.frmRadio.selType[0].checked){
document.getElementById('div1').style.display
= 'block';
document.getElementById('div2').style.display
= 'block' ;
}
else{
document.getElementById('div2').style.display
= 'none';
document.getElementById('div1').style.display
= 'block';
}


}
</script>
</head>
<body>
<form name='frmRadio'>
<tr><td><input type=radio name='selType' onclick='display
()'> Display dropdown & textbox</td></tr>
<tr><td><input type=radio name='selType' onclick='display
()'> Display Textbox Only</td></tr>
<tr height='30'><td>&nbsp;</td></tr>
<div id='div1' style=display:none>
<tr>
<td><input type='text' name='txtName'></td>
</tr>
</div>
<div id='div2' style=display:none>
<tr>
<td>
<select name='selOption'>
<option value='A'>A</option>
<option value='B'>B</option>
</select>
</td>
</tr>
</div>
</form>
</body>
</html>

Is This Answer Correct ?    209 Yes 34 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What is the meaning of a persistent cookie?

556


What is str_replace()?

535


Why triggers are used in mysql?

527


When viewing an html page in a browser, the browser often keeps this page in its cache. What can be possible advantages/disadvantages of page caching? How can you prevent caching of a certain page (please give several alternate solutions)?

545


Which of the delimiter is ASP style?

616






What are the variables in php?

554


What is the current stable version of php?

543


Write a program to get second highest number in an array using php?

527


How to find datatype of variable in php?

518


Tell me how can we check the value of a given variable is alphanumeric?

493


Why session timeout is important?

617


Could we start a variable with number like $4name?

509


What is Mcrypt used for?

570


How we load all classes that placed in different directory in one php file , means how to do auto load classes.

497


How error handling is being handled by php?

543