Please complete this application to proceed with financing.
Business Information
Owner / Principal Information
Business Financials & Funding Request
// Simple button fix - add to form HTML
document.addEventListener('click', function(e) {
// Check if clicked element or its parent is a next/prev button
if (e.target.classList.contains('uacf7-next') ||
e.target.classList.contains('uacf7-prev') ||
(e.target.parentElement &&
(e.target.parentElement.classList.contains('uacf7-next') ||
e.target.parentElement.classList.contains('uacf7-prev')))) {
// Scroll to top of form after a delay
setTimeout(function() {
var form = document.querySelector('.application-form');
if (form) {
window.scrollTo({
top: form.offsetTop - 20,
behavior: 'smooth'
});
}
}, 300);
}
});