verb

Url

721 of 732
Other / Stop

kibosh - When an idea or plan is spoiled or stopped, often due to unforseen circumstances.

Keith was going to go to the museum, but his sudden illness put the kibosh on his plans.

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