noun

Url

49 of 60
Other / Shape

groove - A long, narrow cut or indentation, typically in a surface, often used for fitting or alignment.

The vinyl record has a groove where the needle sits to produce sound.

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