verb

1 of 60
Bad / Attack

pounce - When an animal or bird of prey jumps or swoops suddenly to catch prey

True to its nature, the cat pounced on the mouse before it could run away.

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