Program Application

Please enable JavaScript in your browser to complete this form.
Name
Current Address
Are you a U.S. Citizen?
Do you own a cell phone?
Do you currently attend school?
Have you been employed previously?
0 jQuery(document).ready(function($) { function updateCartCount() { $.ajax({ url: wc_add_to_cart_params.ajax_url, type: 'POST', data: { action: 'get_cart_count' }, success: function(response) { if (response !== '') { $('.floating-cart-icon .cart-count').text(response); } } }); } // Update count when an item is added to the cart $(document.body).on('added_to_cart', function() { updateCartCount(); }); // Update count on page load updateCartCount(); }); 0