nounverb verb

25 of 60
Bad / Mistake

fumble - Use the hands clumsily while doing or handling something

The football player fumbled the ball, so the opposing players tried to grab it.

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