verb

577 of 1578
Bad / Dishonest

tamper - To interfere with or change something in order to cause damage or make unauthorized alterations.

For the last few decades, Tylenol bottles have included a safety seal in order to prevent any unauthorized tampering.

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