noun

25 of 60
Bad / Uncomfortable

lapse - A temporary pause, omission, or failure

Becky's occasional lapses in memory as she got older worried her that it might be a condition that might get worse

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