Houw would i do the same thing like this for radio buttons in jquery?
$("select option:not(:selected)").removeClass("takethis");
Houw would i do the same thing like this for radio buttons in jquery?
$("select option:not(:selected)").removeClass("takethis");
$("input:radio, input:checkbox").not(":checked").removeClass('takethis');