verb

673 of 1578
Bad / Attack

sabotage - To deliberately destroy, damage, or obstruct (something), especially for political or military advantage.

People who aren't willing to better themselves often resort to sabotaging themselves instead of working through the problem.

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