verb

Url

37 of 60
Bad / Aggressive

grab - To take or seize something quickly or suddenly, often with a strong or swift motion.

He tried to grab the last large piece of pizza before anyone else noticed.

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