verb

Url

529 of 733
Other / Shape

dovetail - To fit or work together smoothly and perfectly.

The two departments tried to dovetail their efforts in order to finish the job on time.

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