noun

Url

13 of 22
Other / Desire

aspiration - A strong desire or ambition to achieve something.

She worked day and night to fulfill her aspiration of opening a bakery.

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