verb

Url

1237 of 1576
Bad / Mistake

overreach - To go beyond what is proper, reasonable, or safe—especially in power or ambition; to stretch too far and fail as a result.

The company overreached by expanding too quickly and ended up in debt.

// Auto-focus search input when modal opens var searchModal = document.getElementById('searchModal'); if (searchModal) { searchModal.addEventListener('shown.bs.modal', function () { var inp = searchModal.querySelector('input[name=search]'); if (inp) inp.focus(); }); }