Skip to content

Instantly share code, notes, and snippets.

@guoxiangke
Created May 26, 2014 03:45
Show Gist options
  • Save guoxiangke/48d31d9c83d7040a548a to your computer and use it in GitHub Desktop.
Save guoxiangke/48d31d9c83d7040a548a to your computer and use it in GitHub Desktop.
chrome firefox input radios click auto submit
<script type="text/javascript">
$(document).ready(function(){
$("#webform-client-form-1363 .form-actions .form-radios label").live('click',function(e){//.click(function(){
e.preventDefault();
$(this).children('input').attr('checked','checked');
// console.log('click');
$("#webform-client-form-1363 .form-actions input[type=submit]").trigger("click");
});
})
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment