noun

25 of 60
Bad / Bad

travesty - A false, absurd, or distorted representation of something

In our court system, a travesty of justice typically occurs when the little guy goes against powerful interests and loses.

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