verb

85 of 732
Other / Up+Down

swoop - (especially of a bird) To move rapidly downward through the air

Once it spotted its prey on the ground, the eagle swooped in with its talons ready.

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