noun

25 of 60
Bad / Old

oblivion - The state of being forgotten or destroyed

This year's fad is on everybody's mind, and next year it will have faded into oblivion.

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