verb

Url

517 of 732
Other / Stop

deter - To prevent (or aim to prevent) the occurrence of something through fear of consequences.

A barking dog can deter burglars from breaking into a home.

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