Hi,
How to add onclick on a radio button list,
I want my form submit when an user change the value on a radio in my multi-page form
I try this, but not work
jQuery(document).ready(function(){
jQuery('#choice_20_0').bind('onchange', function (){
jQuery("#gform_target_page_number_1").val("3");
jQuery("#gform_1").trigger("submit",[true]);
});
});