noun

13 of 60
Bad / Delay

slacker - A person who avoids work or effort

Chris was the ultimate slacker at work, asleep at his desk half the time.

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