verb

1 of 60
Bad / Confused

boggle - For a person to be astonished or overwhelmed when trying to imagine something

Looking up at the stars and imagining the size of the universe can boggle a person's mind.

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