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