verb

Url

517 of 733
Other / Up+Down

descend - To move from a higher to a lower place or position; to go down.

We watched the sun slowly descend behind the hills.

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