Pay your Bill

$0.00

Step 1 of 2

Secure Online Payment Portal

Please fill out the form below to pay your invoice. A pdf copy of your payment receipt will be emailed to you. Please list the invoice number as it appears on the paper copy of your Garrison & Garrison invoice.
Customer Name(Required)
Customer Email(Required)
Service Address
Category:
setTimeout(resolve, 100)); } jQuery(document).ready(function ($) { console.log("content loaded"); function updateServiceAddress() { console.log("content changed"); var serviceAddress = { first_name: $('#input_1_3_3').val(), second_name: $('#input_1_3_6').val(), phone_number: $('#input_1_4').val(), street_address: $('#input_1_22_1').val(), street_address2: $('#input_1_22_2').val(), city: $('#input_1_22_3').val(), state: $('#input_1_22_4').val(), zip: $('#input_1_22_5').val(), email: $('#input_1_5').val() }; localStorage.setItem("service_address", JSON.stringify(serviceAddress)); } // if (document.querySelector('#gform_1')) { var loop = setInterval(function () { console.log("Loop running"); var fields = $('#gform_1 input'); fields.each(function ($this) { $(this).addClass('event_added'); $(this).change(function () { console.log("Changed"); updateServiceAddress(); }); }); // $('#gform_next_button_1_21').click(updateServiceAddress()); if ($('#gform_1 input.event_added').length != 0) { console.log("Loop Ending"); clearInterval(loop); $('#gform_next_button_1_21').click(updateServiceAddress()); } }, 50); // } if ($('.woocommerce-billing-fields').length != 0) { showToast("Fields are automatically updated", 5000); var serviceData = JSON.parse(localStorage.getItem("service_address")); console.log(serviceData); // setTimeout(function () { // console.log("Updating billing fields"); $("#billing_first_name").val(serviceData.first_name); $("#billing_last_name").val(serviceData.second_name); $("#billing_address_1").val(serviceData.street_address); $("#addr_line_2").val(serviceData.street_address2); $("#billing_city").val(serviceData.city); // $("#billing_state").val(serviceData.state); $("#billing_postcode").val(serviceData.zip); $("#billing_email").val(serviceData.email); $('#billing_phone').val(serviceData.phone_number); // }, 3000); } }); })();