adjective

Url

25 of 72
Bad / Dangerous

volatile - An unstable situation that is likely to get worse quickly

Victor realized that he had created a volatile chemical that could easily explode if he wasn't very careful

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