verb

1 of 42
Other / Light

dazzle - To confuse a person's vision temporarily with lights that are flashing.

In the dark forest, the travelers were dazzled by the extremely bright stars in the sky.

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