verb

Url

13 of 60
Other / Stop

clog - To become blocked or filled so that movement or activity is slowed or stopped.

Some dirt was clogging the sink, so that the water in the sink didn't drain properly.

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