nounverb verb

13 of 60
Other / Body

squint - Look at someone or something with one or both eyes partly closed in an attempt to see more clearly or as a reaction to strong light

George lost his glasses, so he had to squint to see anything clearly.

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