verb

Url

61 of 69
Good / Strong

overpower - To defeat or overcome with superior strength, force, or pursuasiveness.

The car salesman's charm and logic often overpowered the buyers' concerns and doubts.

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