verb

1 of 60
Other / Entice

evince - To cause a feeling to reveal itself.

His feeling of charity was evinced each time he saw a poor person on the street, and he responded by giving them some money.

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