$(function () { new $.module['form'] ( $('.save-form'), { before: function () { if (!$('#agree').is(':checked')) { alert("You must agree to the purpose of collection and use of your personal information."); return false; } return true; }, success : function(module, insert_id){ location.href='/eng/sub020105/completed/suggest_id/' +insert_id }, page_exit: true, jgrow: true } ); $('#anonymous').change(function() { console.log('aaa'); if($(this).is(':checked')) { $('#name').val('anonymous'); $('#email, #tel').val(' '); $('#name, #email, #tel, #agree2').prop('disabled',true); } else { $('#name, #email, #tel, #agree2').prop('disabled',false); $('#name').val(''); $('#email, #tel').val(''); } }); })