adjective

181 of 733
Other / Sound

glib - (of words or the person speaking them) fluent and voluble but insincere and shallow

Barry was a glib person who pretended to be interested in other people even though he didn't really care about them.

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