verb

Url

733 of 903
Good / Smart

navigate - To lead a company, activity, etc. in a particular direction, or to deal effectively with a difficult situation.

From the time he started Microsoft, Bill Gates was able to successfully navigate its rapid growth in terms of products and customers.

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