noun

13 of 60
Bad / Confused

dilemma - A situation in which a difficult choice has to be made between two or more alternatives, especially equally undesirable ones

Life is filed with dilemmas, often leading to no good outcome.

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