noun

13 of 60
Bad / Delay

limbo - An uncertain period of awaiting a decision or resolution; an intermediate state or condition

Because Ian had so much trouble making decisions, he often felt stuck in limbo, unsure of which direction his decisions would be taking 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(); }); }