noun

13 of 60
Bad / Dishonest

sham - A thing that is not what it is purported to be

To the naked eye, a counterfeit handbag looks like the real thing, instead of a poorly made sham that it really is.

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