verb

1 of 60
Bad / Dangerous

lurk - (of a person or animal) To be hidden so as to wait in ambush for someone or something

Artie lurked under his sister's bed so he could jump out and scare her when she least expected it.

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