verb

49 of 733
Other / Sound

mutter - To say something in a low or barely audible voice, especially in dissatisfaction or irritation

After being yelled at by his boss, Ken muttered under his breath about how he hated his job.

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