Sha256: 61d2062e3c7af57c958e69af39428da1ec168d1c95381a4f34937894c2d101cc
Contents?: true
Size: 426 Bytes
Versions: 76
Compression:
Stored size: 426 Bytes
Contents
$(document).ready(function () { var useBilling = $('#user_use_billing') if (useBilling.is(':checked')) { $('#shipping').hide() } useBilling.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
76 entries across 76 versions & 1 rubygems