verb

25 of 60
Other / Wet

quench - To drink liquid so that you stop being thirsty

Sally found that the best way to quench her thirst was by drinking water and not soda

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