var text_properties = document.getElementById('text_properties'); var graphic_properties = document.getElementById('graphic_properties'); function changerBillingAdress(elem) { if (elem.id == 'text_only') { text_properties.style.display = 'block'; graphic_properties.style.display = 'none'; } else { if (elem.id == 'graph_only') { text_properties.style.display = 'none'; graphic_properties.style.display = 'block'; } else{ text_properties.style.display = 'block'; graphic_properties.style.display = 'block'; }; } } $(document).ready(function() { var text_properties_radio = document.getElementById('text_only'); var graphic_properties_radio = document.getElementById('graph_only'); if(!text_properties_radio || !graphic_properties_radio){ return; } if (text_properties_radio.checked) { text_properties.style.display = 'block'; graphic_properties.style.display = 'none'; } else { if (graphic_properties_radio.checked) { text_properties.style.display = 'none'; graphic_properties.style.display = 'block'; } else{ text_properties.style.display = 'block'; graphic_properties.style.display = 'block'; }; } });