Thread: Radio Buttons
View Single Post
  #1 (permalink)  
Old Apr 12th, 2004, 16:54
redhead redhead is offline
New Member
Join Date: Apr 2004
Posts: 1
Thanks: 0
Thanked 0 Times in 0 Posts
Radio Buttons

Hi There

I have a radio button that i would like the user to be able to check or uncheck. I need radio buttons other wise i would use checkboxes LOL

Anyway this is what i have come up with

Code: Select all
input type="radio" onclick="this.checked=(this.checked)?false:true"

This works

But when i add a name or value like this
Code: Select all
<input type="radio" name="radiobutton3a" value="Diebold" onclick="this.checked=(this.checked)?false:true" >
It does not work any ideas please help me i'm going crazy