verb

1 of 60
Good / Love

coddle - To treat in an indulgent or overprotective way

Many kids today are coddled by their parents who don't want them to experience difficulties in their lives.

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