noun

463 of 3214
Bad / Small

smidgen - A small amount of something

Even a smidgen of ketchup would make the bland french fries more flavorful.

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