I have radio buttons embedded in my form as
<%= f.radio_button :name_present,true,:class => "namePresent"%>
<%= f.radio_button :name_present,false,:class => "namePresent"%>
and my application.js file contains
$(".namePresent").live('click',function(e){
$("#form").submit();
//form is the id of my form_for
});
All parameters are passed in chrome, but in firefox parameter from radio buttons are not passed.