adjective

Url

13 of 60
Bad / Confused

ambiguous - Something whose meaning is unclear, because it can be understood in several ways

Bill's parents often asked when he was moving out of the house and getting a job, but his answer was always ambiguous.

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