verb

Url

37 of 60
Bad / Confused

digress - To temporarily leave the main subject of a conversation or discussion

Please don’t digress—we need to focus on the main issue during these important negotiations.

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