verb

245 of 3214
Other / Move

swerve - To turn aside abruptly from a straight line or course to avoid something in front of you.

The van swerved to avoid the car suddenly stopping in front of it.

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