adjective

Url

49 of 60
Other / Surprise

telltale - Revealing or indicating something hidden or secret, showing the inner nature of something.

The telltale clouds of smoke hinted at a fire nearby.

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