adjective

Url

613 of 733
Other / Inward

picky - Being very particular or selective about something, often to the point of being hard to please.

My dog is picky about where he sleeps; he’ll only rest on his favorite blanket.

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