Contact Us

Reach Hi TECH CAPITAL LLC for customer care, financial planning questions, or general finance-related inquiries.

1115 Broadway, 12th Floor, New York, NY 10010

Let's Get Connected

Send us your details and message. Our team will review your inquiry and respond with the appropriate next steps.

🇺🇸 +1
const submitBtn = form.querySelector('button[type="submit"]') || form.querySelector('[type="submit"]'); function restoreBtn() { if (!submitBtn) return; if (submitBtn.tagName === 'INPUT') { submitBtn.value = 'Submit'; } else { submitBtn.textContent = 'Submit'; } submitBtn.disabled = false; } // Fix wrong initial value (e.g. "0" or empty) if (submitBtn) { const cur = submitBtn.tagName === 'INPUT' ? submitBtn.value : submitBtn.textContent.trim(); if (!cur || cur === '0') { restoreBtn(); } } // Patch form.reset() const originalReset = form.reset.bind(form); form.reset = function () { originalReset(); restoreBtn(); };