adjective

325 of 732
Other / Fast

prompt - To be on time

Arlene was proud that she was very prompt with regards to arriving at work, and she got there exactly at 9AM every morning.

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