verb

1 of 60
Bad / Mistake

botch - To carry out a task badly or carelessly

Eric botched the assignment that he was asked to do, so his supervisor had to reprimand him.

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