{script} $('.select_type_tr').hide(); var selected = 'upload'; if($('input[name=code]').value != ''){ selected = 'code'; } {if isset($input_type)} selected = '{$input_type}'; {/if} $('#input_type_'+selected).click(); $('#type_'+selected).show(); {literal} $("[name=input_type]").click(function(){ $('.select_type_tr').hide(); if($('#input_type_code').is(':checked')){ $('#type_code').show(); $('#aparatURL').val(''); } else if($('#input_type_aparat').is(':checked')){ $('#type_aparat').show(); } else if($('#input_type_upload').is(':checked')){ $('#type_upload').show(); $('#aparatURL').val(''); } }); {/literal} {/script}