- For individual users
- Instant access to solutions
- Ask your tech questions
- Start your 30-day Free Trial
Main Topics
Browse All TopicsHi, can anybody help.
I've got three radio button on my form. I want to display a particular value in a textfield as per the radio button selected.
Below is my code.
<html>
<head>
<script>
function toggletab(obj){
if(obj.value=='pckg2'){
document.ordfrm.id.value==
else if(obj.value=='pckg3'){
document.ordfrm.id.value==
else{
document.ordfrm.id.value==
}
</script>
</head>
<body>
<form name="ordfrm" method="" action="">
<table>
<tr>
<td ><input onclick="toggletab(this)" type="RADIO" name="pckg" value="pckg1" id="lpckg" checked></td>
</tr>
<tr>
<td ><input onclick="toggletab(this)" type="RADIO" name="pckg" value="pckg2" id="2pckg"></td>
</tr>
<tr>
<td><input onclick="toggletab(this)" type="RADIO" name="pckg" value="pckg3" id="3pckg"></td>
</tr>
<tr>
<td><input type="Text" value="" name="id"></td>
</tr>
</table>
</form>
</body>
</html>
This Question has been solved and asker verified All Experts Exchange premium technology solutions are available to subscription members.
Experts Exchange has been collecting answers to technology questions since 1996…3 million and counting! If you have a question, chances are we already have your answer.
If you can't find the exact answer you're looking for, ask our exclusive community of 50,000 experts. You’ll get a personalized answer from a trusted professional.
Thousands of free tech tips, tricks, how-to’s and tutorials are available in our peer reviewed articles section. See for yourself how smart our experts are, no login required.
Access the answers to your technology questions today.
30-day free trial. Register in 60 seconds.
Members of the expert community talk about why the experience at Experts Exchange is different than what you will find anywhere else.

Try it out and discover for yourself.
30-day free trial. Register in 60 seconds.
Join the community of experts here and help other tech pros by answering question in your area of expertise. You can earn FREE access to all Experts Exchange's premium features and resources.
Business Accounts
Answer for Membership
by: prohacxPosted on 2005-01-17 at 01:11:58ID: 13061312
Hi there!
2';} 3';} 1';}
Simply change all your == checks into =
Like so:
if(obj.value=='pckg2'){
document.ordfrm.id.value='
else if(obj.value=='pckg3'){
document.ordfrm.id.value='
else{
document.ordfrm.id.value='
}
== is a check used in if statements for example...
also, maybe you should rename your id field, since id is an object property in Javascript and it might result in some problems with some browsers...
good luck!