verb

241 of 732
Other / Squeeze

cling - (of a person or animal) To hold on tightly to

The small child would cling to her mother to avoid getting separated from her.

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