noun

13 of 36
Bad / Angry

rancor - Bitterness or resentfulness, especially when long-standing

Tom and Jed always fought with each other because of their mutual rancor.

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