adjective

Url

685 of 732
Other / Slowly

piecemeal - Done in a series of steps, little by little, gradually over time.

The general knew that the battle could not be won all at once, so he had a plan to win it piecemeal, one part at a time.

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