verb

13 of 29
Other / Slowly

stray - To move away aimlessly from a group or from the right course or place

Vincent's cat had strayed far from home and ended up in the middle of the road.

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