Wrox Programmer Forums
Go Back   Wrox Programmer Forums > Web Programming > JavaScript > Javascript How-To
|
Javascript How-To Ask your "How do I do this with Javascript?" questions here.
Welcome to the p2p.wrox.com Forums.

You are currently viewing the Javascript How-To section of the Wrox Programmer to Programmer discussions. This is a community of software programmers and website developers including Wrox book authors and readers. New member registration was closed in 2019. New posts were shut off and the site was archived into this static format as of October 1, 2020. If you require technical support for a Wrox book please contact http://hub.wiley.com
 
Old August 17th, 2004, 11:18 AM
Authorized User
 
Join Date: Jul 2003
Posts: 62
Thanks: 0
Thanked 0 Times in 0 Posts
Default How to restore radio button to unselect status?

I have a radio button,like follows:
<input type="radio" name="dutyid" value="1">
<input type="button" name="do" onclick="javascript:unselect()">

when i click it,it will be select. I want to realize follow function: when I click "do" button ,I want make radio become unselect status.
How to realize it in Javascript?

Thanks in advacne!

 
Old August 17th, 2004, 11:31 AM
joefawcett's Avatar
Wrox Author
 
Join Date: Jun 2003
Posts: 3,074
Thanks: 1
Thanked 38 Times in 37 Posts
Default

Code:
function unselect()
{
  document.forms[0].dutyid.checked = false;
}
should do it. Hoever if you have more than one radio button with the same name you will need to refer to them specifically, I would use:
Code:
var oRadio = document.getElementsByName("dutyid")[0]; //replace 0 with index of button if necessary
oRadio.checked = false;
Normally if you only have one button then it should be a checkbox.

--

Joe





Similar Threads
Thread Thread Starter Forum Replies Last Post
Radio button gaurisharya C# 2005 2 March 16th, 2008 06:43 AM
Radio button Jolley_tolson Javascript 2 July 15th, 2007 05:50 AM
radio-button grstad HTML Code Clinic 3 February 28th, 2006 08:32 AM
Radio Button hoailing22 ASP.NET 1.0 and 1.1 Basics 1 June 2nd, 2005 12:08 AM
Button acts depending on radio button values janise Access 4 March 10th, 2004 12:53 AM





Powered by vBulletin®
Copyright ©2000 - 2020, Jelsoft Enterprises Ltd.
Copyright (c) 2020 John Wiley & Sons, Inc.