verb

Url

37 of 60
Other / Entice

induce - To persuade or influence someone to do something.

The advertisement was designed to induce people to buy the product.

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