verb

Url

1165 of 1576
Bad / Aggressive

impose - To force something to be accepted or endured, often against someone's will.

He didn’t want to impose his opinions on others, so he listened when other people talked.

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