noun

25 of 60
Good / New

vanguard - A group of people that leads the way for others, in ideas or battle.

During the 1980's, a small group of tech companies in Silicon Valley, California were the vanguard that led the world in new developments that changed the world.

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