verb

1 of 60
Good / Smart

delve - To research or make painstaking inquiries into something

In his research for his book about George Washington, the author delved into the details of his life and presidency.

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