verb

25 of 78
Other / Move

skim - To remove a substance from the surface of a liquid

The farmer skimmed the cream from the milk in order to reduce the fat content.

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