nounverb noun

37 of 60
Other / Inward

blush - A reddening of the face as a sign of embarrassment or shame

One of the many emojis available features a smiling face with a blush to indicate receiving flattery.

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