adjective

Url

565 of 733
Other / Fast

hasty - Done or made quickly, often without careful thought.

The judge told the jury and the lawyers that they should take their time reviewing the testimony, and they should avoid making a hasty judgment.

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