noun

Url

13 of 31
Bad / Delay

hurdle - a problem that you must solve or deal with before you can make progress.

To take an idea and turn it into a successful and profitable product invovles countless hurdles that must be overcome.

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