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