pay.js 367 B

12345678910
  1. $(document).ready(function() {
  2. $('.radio-inline,.iCheck-helper').click(function() {
  3. var value = $(this).closest(".radio-inline").find("input:radio").val();
  4. if(value==3){
  5. $(this).closest(".form-group").nextAll().hide();
  6. }else {
  7. $(".fields-group .form-group").show();
  8. }
  9. });
  10. });