verb

Url

73 of 78
Other / Move

toss - To throw something lightly or casually, to move or mix something by shaking or flipping.

When she got home after a tough day at work, she tossed her keys onto the table and sat down to rest.

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