noun

97 of 732
Other / Shape

blur - When something is out of focus, indistinct, or obscured in a smudge or mist.

The rain on the windscreen reduced the oncoming traffic to a blur that made it hard for Beth to drive, even with her glasses.

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