I have a form that contains some Checkboxes and one Radio.
The problem is that all the Checkboxes are controlled by a jQuery code to change the style.
Every checkbox in that form will be styled because the jQuery code.
But I was in need to have only one checkbox not styled. So I had to use a Radio.
I have only one Radio, and I need to find a function to check/uncheck it as it was a normal checkbox.
Is this possible? I run jQuery 1.3.2
The question is phrased in a very confusing way but I think you are asking how, from javascript, to set whether a radiobutton is checked or not.
You can set
myRadioButton.checked = false;ormyRadioButton.checked = true;