verb

1 of 60
Other / Squeeze

crunch - To crush (a hard or brittle foodstuff) with the teeth, making a loud but muffled grinding sound

Chips of any kind, whether potato or tortilla, will always involve people crunching them.

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