adjective

25 of 60
Bad / Old

musty - Having a stale, moldy, or damp smell

The old books were priceless but gave off a musty smell due to their age.

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