verb

1 of 57
Good / Calm

dabble - To take part in an activity in a casual or superficial way

Steve dabbled a bit in photography, but he was still trying to fully understand how his camera worked.

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