verb

1 of 27
Bad / Dirty

scuff - To scrape or brush the surface of something such as a shoe or other object, against something else.

Quincy had to take his car in for repairs after his bumper scuffed a brick wall.

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