Sha256: 9bf42c91c3951b5887c3845f585c8557b5c4b13b7bebfb51a7e583a970d83676
Contents?: true
Size: 445 Bytes
Versions: 11
Compression:
Stored size: 445 Bytes
Contents
$( document ).ready(function() { var use_billing = $('#user_use_billing'); if(use_billing.is(':checked')) { $('#shipping').hide(); } use_billing.change(function() { if(this.checked){ $('#shipping').hide(); return $('#shipping input, #shipping select').prop('disabled', true); } else { $('#shipping').show(); $('#shipping input, #shipping select').prop('disabled', false); } }); });
Version data entries
11 entries across 11 versions & 1 rubygems