verb

1586 of 3214
Other / Move

bypass - To avoid something by going around it.

Jim heard there was a lot of traffic on the main highway, and was able to bypass it by going on a smaller 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(); }); }