noun

Url

553 of 733
Other / Fast

flashback - A sudden, vivid memory of a past event, often triggered by something in the present. Often used in films and books.

In the movie, there was a flashback showing the hero’s troubled past.

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