adjective

Url

25 of 27
Good / Busy

headlong - Done in a rush without thinking carefully.

His chance of success was not good, because in his excitement, he dove headlong into the project without a plan.

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