adjective

25 of 60
Bad / Strange

farfetched - Very unlikely to be true, and difficult to believe

Steve Jobs proved all the doubters wrong when he made what they thought were farfetched predictions of success.

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