I would like to know if it is possible to hide the checked radio button with css by using:
{ display:none; }
I don\'t know how to address
Additional to Nathan Lee answer
input[type="radio"]:checked{
visibility:hidden;
}
is an option to specify a checked radio button
input[type="radio"][value="text"]:checked{
visibility:hidden;
}
is an option to specify a checked radio button with a value that equals 'text' ('none' in your example)
more info: https://developer.mozilla.org/en-US/docs/Web/CSS/Attribute_selectors
if the value is not know, some jQuery can do the trick: http://api.jquery.com/attribute-equals-selector/