verb

1 of 60
Other / Squeeze

crumple - To crush (something, typically paper or cloth) so that it becomes creased and wrinkled

Greg crumpled up so much paper that the wastebasket began overflowing.

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