一旦 hidden にして visible にする。
$('.class' + id).html(data).css({visibility: 'hidden'}).css({visibility: 'visible'});
$('.class' + id + ':first').val($('.class' + id + ':first').find(':nth-child(2)').val());
symfony の helper だと id と name は勝手に指定してくれるけど class は指定してくれないので、name で value を取得するのが楽チン。
$("input[@name='radioButton']").click(function() { ... snip ... });
if ($("input[@name='radioButton']:checked").val() == 0) { ... snip ... );
$('#foo, #bar').map(function() { $(this).blur(function() { $('#buz').val($('#foo').val() - $('#bar').val()); }) });