verb

Url

577 of 733
Other / Stop

impede - To create obstacles or difficulties that hinder an action or process.

His lack of experience may impede his chances of getting the 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(); }); }