verb

14 of 37
Other / Up+Down

stagger - To walk or move unsteadily, as if about to fall

After drinking all night at the bar, Omar staggered all the way home.

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