adjective

13 of 45
Good / Smart-Adj

eloquent - To speak beautifully, clearly, and effectively.

The Roman statesman Cicero was famous for his eloquent speeches.

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