verb

Url

49 of 60
Bad / Hostile

undermine - To weaken or damage something, especially gradually or secretly; to sabotage or erode the foundation or support.

Constant criticism from a parent or a boss can undermine a person's self-esteem.

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