verb

1 of 60
Good / Flexible

straddle - To sit or stand with one leg on either side of something.

Saddles were first invented so that riders could straddle a horse.

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