Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


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..

Answers were Sorted based on User's Feedback



I have two radio button, i click one radio button display one dropdown box, one text field. and th..

Answer / 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

I have two radio button, i click one radio button display one dropdown box, one text field. and th..

Answer / sonam sherpa

Thank You. That really did the job for me but now how do I
get the POST value of both the radio button and the select
box. Or at least I want the value of the selection box that
was activated after clicking the radio button?
would really appreciate your help.

Is This Answer Correct ?    74 Yes 43 No

I have two radio button, i click one radio button display one dropdown box, one text field. and th..

Answer / amitabh

take off your pants. press your buttocks. you will get the answer.

Is This Answer Correct ?    35 Yes 15 No

I have two radio button, i click one radio button display one dropdown box, one text field. and th..

Answer / smita

Hi Monika,

Thats really very helpful.
In addition to this I have on more query,
With textbox I have one submit button, when I click on that
submit button(submits form) the textbox disappears and comes
back to radio button .
Would really appreciate you help.
Thanks

Is This Answer Correct ?    5 Yes 7 No

Post New Answer

More PHP Interview Questions

Which php framework is in demand?

0 Answers  


Do I need apache for php?

0 Answers  


Which method do you follow to get a record from a million records? (Searching not from database, from an array in php)?

0 Answers  


What is data type in php?

0 Answers  


What are the data types in php?

0 Answers  


How to use the COM components in PHP?

2 Answers   HCL,


What beforeFilter() is used?

0 Answers   HCL,


Explain how we can get the number of elements in an array?

0 Answers  


How to get tabels from database in php andd display it in the table form using codelgniter? plz help me

2 Answers  


Are php session secure?

0 Answers  


how to do connectivity of 2 dbs in PHP script?

3 Answers   TCS,


What's the diff. between include() and Include_once().

5 Answers   Intrack,


Categories