verb

Url

49 of 60
Other / Slowly

scan - To move your eyes over something slowly in order to get an overview or to find specific information, or getting a machine to do this.

He scanned the crowd for any familiar faces, hoping to see one of his friends at the concert.

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