$( "input.th_radio:radio" ).on( "click", function() {
if($(this).is(":checked")) {
$(".th_svg path").css("fill", "#ffffff");
}
})
$("input.th_radio:radio").on("click", function(){
if($(this).prop("checked")){
$("all other").css("fill", "#ffffff");
$(this).css("fill", "this is becoming the new style");
}
});