フォームにラジオボタンが埋め込まれています
<%= f.radio_button :name_present,true,:class => "namePresent"%>
<%= f.radio_button :name_present,false,:class => "namePresent"%>
私のapplication.jsファイルには
$(".namePresent").live('click',function(e){
$("#form").submit();
//form is the id of my form_for
});
すべてのパラメーターは chrome で渡されますが、firefox ではラジオ ボタンからのパラメーターは渡されません。