Tag Archives: Business Catalyst

How to Make Billing Information Same as Shipping – Business Catalyst / GoodBarry

HTML:   <input type="checkbox" onclick="SetBilling(this.checked);"/> Same as Shipping   JavaScript:   <script type="text/javascript"> function SetBilling(checked) {         if (checked) {                 document.getElementById(‘BillingAddress’).value = document.getElementById(‘ShippingAddress’).value;                 document.getElementById(‘BillingCity’).value = document.getElementById(‘ShippingCity’).value;                 document.getElementById(‘BillingState’).value = [...]
Posted in Business Catalyst / GoodBarry, JavaScript | Also tagged , , | Leave a comment