noun

Url

61 of 78
Other / Move

inertia - Resistance to change, effort, or progress in a situation, system, or organization.

The company’s inertia in adapting to new technology led to its downfall.

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