verb

49 of 70
Other / Body

gargle - To move a liquid around in your throat without swallowing, especially to clean it or stop it feeling painful

Arthur gargled with mouth wash every morning to make his breath fresh

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