verb

1 of 60
Other / Slowly

ramble - To walk for pleasure, typically without a definite route.

Sometimes on the weekend, Joe would like to just ramble in the woods and think about the week that was and the week that was about to be.

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