verb

Url

37 of 60
Bad / Dishonest

deceive - To mislead or trick someone, especially for personal gain.

Don’t try to deceive me — I know what really happened.

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