verb

Url

553 of 903
Good / Flexible

improvise - To make or adapt something using available resources due to a lack of proper materials.

The comedian had to improvise when the microphone stopped working during his performance.

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