verb

Url

49 of 74
Other / Shape

overlap - The way two things can share space, features, or time.

Their work schedules overlap on Tuesdays, so they often meet for lunch.

// 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(); }); }