I\'m sitting with a problem, I need to check with JQuery if no radio button within a radio button group has been checked, so that I can give the users an javascript error if
if ($("input[name='html_elements']:checked").size()==0) { alert('Nothing is checked!'); } else { alert('One of the radio buttons is checked!'); }