verb

1 of 60
Other / Squeeze

cram - To completely fill (a place or container) to the point that it appears to be overflowing.

Public garbage cans are always crammed with trash until it spills onto the street.

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